Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

asp and flash

Status
Not open for further replies.

goaganesha

Programmer
Dec 4, 2001
178
0
0
BE
Hi there,

I have an swf embedded in an asp page called test.asp. This asp page is allways opened with a variable called "name" submitted in the url using the get method.
like:
I need this myName value in the asp code but also in the flashmovie. In Asp I get the value using request.querystring("name") but how is it done in the flash movie?

Regards, goaganesha
 
problem solved:
All url variables are accessible in the movie like this:
<object>

<param name=&quot;movie&quot; value=&quot;myswf.swf?<%=Request.QueryString()%>&quot;>
<param name=&quot;quality&quot; value=&quot;high&quot;>
<embed src=&quot;myswf.swf?<%=Request.QueryString()%>&quot; quality=&quot;high&quot; pluginspage=&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;361&quot; height=&quot;285&quot;></embed></object>

Regards, goaganesha
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top