y2chuck
10-09-2003, 02:25 PM
I have a page called test.html.
It contains a link: a href="asptest.asp?var1=blah&var2=blahblah"
I have a 2nd page called asptest.asp. It contains a 2 frame flash movie and also receives the querystring.
strTitle = server.urlencode(request.querystring("title"))
strTrack = server.urlencode(request.querystring("filename"))
response.write("&title=" & strTitle & "&filename=" & strTrack)
output is: &title=title1&filename=track%2Emp3
frame 1 of the asp page: loadVariables("asptest.asp", 0, "GET");
frame 2 just stops and there is a dynamic text box with "title" as the var.
Problem is, the value doesn't get populated into the text box. I've never tried using flash and ASP before, read some tutorials and from what I've read, this should work but it doesn't. The text box is white background wwith blue text so I know it's not a white bg/white text problem! Any help would be great.
It contains a link: a href="asptest.asp?var1=blah&var2=blahblah"
I have a 2nd page called asptest.asp. It contains a 2 frame flash movie and also receives the querystring.
strTitle = server.urlencode(request.querystring("title"))
strTrack = server.urlencode(request.querystring("filename"))
response.write("&title=" & strTitle & "&filename=" & strTrack)
output is: &title=title1&filename=track%2Emp3
frame 1 of the asp page: loadVariables("asptest.asp", 0, "GET");
frame 2 just stops and there is a dynamic text box with "title" as the var.
Problem is, the value doesn't get populated into the text box. I've never tried using flash and ASP before, read some tutorials and from what I've read, this should work but it doesn't. The text box is white background wwith blue text so I know it's not a white bg/white text problem! Any help would be great.