Why can't I just drag the DataSet field from the the Application window to the
area where I want that data to be inserted in the code, just like I would if it
were to be displayed as text in the body of the page. I assume there there is
just some type of syntactical problem that I am not aware of. Please help!

Thank you,
Greg Lile

This is what I want:

<script runat="server">

Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs)
Dim ID3StreamWriter As IO.StreamWriter
ID3StreamWriter =
IO.File.CreateText(C:\MediaTitles\DynamicDataHere\ID3.txt")
ID3StreamWriter.WriteLine("filename^album^tracktit le^tracknumber")
ID3StreamWriter.Close()
End Sub
</script>

This is how I tried to accomplish it:

<script runat="server">

Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs)
Dim ID3StreamWriter As IO.StreamWriter
ID3StreamWriter = IO.File.CreateText("C:\MediaTitles\<%#
ID3Info.FieldValue("MediaTitleID", Container) %>\ID3.txt")
ID3StreamWriter.WriteLine("filename^album^tracktit le^tracknumber")
ID3StreamWriter.Close()
End Sub
</script>