Asp and flash retrivning dynamic values, probably simple

Hello,

I want to dynamicaly change the content of my file project. To this this i’m passing different values from my asp file to the flash file using request.querystring, which probably is the problem.

This code work in my asp file:

txt1 = “images/”
txt2 = “27” [color=red]//here is where I want my dynamic value. [/color]
txt3 = “/”
txtVariable = txt4 & txt2 & txt8
Response.Write("&thePics="&txtVariable&"&")

Now my flash file is loading the asp page where theese variable resides without problems. But when I try to retrive the value using Request.Querystring it seems like flash can’t load the value I’ve retrived like this:

txt1 = “images/”
txt2 = Request.QueryString(“device”) [color=red]//which holds the value 27[/color]
txt3 = “/”
txtVariable = txt4 & txt2 & txt8
Response.Write("&thePics="&txtVariable&"&")
This asp file doesn’t work, it doens’t display the value from request.querystring.

Q1: There seems to be problems using request.querystring in my files or am I doing something wrong?

Q2: Is there a better way to solve this instead of using request.querystring?

\Thanks