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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

passing variable from ASP to Flash?????

Status
Not open for further replies.

bobetko

Programmer
Jan 14, 2003
155
US
I have this command:
Code:
loadVariablesNum ("listThumb.asp", 0, "GET");
and listthumb is literaly this:
Code:
<%
response.write "&a5=2"
%>

when I do trace(a5) in flash I get as a result 2" instead of only 2

please help...
WHY??? The Flash is killing me.... I am loosing to much time.... The funny thing is I did this before and didn't have any problems.
I
 
ok, I found solution...

IN FLASH STYLE....

Instead of this:
<% response.write "&a5=2" %>

ASP code has to be like this:
<% response.write "&a5=2&" %>

I LOVE FLASH

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top