PDA

View Full Version : asp to flash


hmjones32
05-24-2002, 10:03 PM
Here the problem. I have a flash movie in an asp page. I am using loadVariblesNum to get a variable from the asp. In the asp file I am using Response.write, but the problem is that it that is write the sting on the page. Is there anohter way other than using Response.write?

tg
05-28-2002, 04:16 PM
post your asp file.

Mcircus
06-03-2002, 07:31 PM
if you are useing response.write it will write to the page. you will need to assing the value in the response.write

dim testOne

testOne = rs("something")

then load that into you page.

or in the object tags you could do this
<%
dim testTwo

testTwo = rs("somethingElse")
%>

'page object

page.swf?testTwo=<%= testTwo%>


hope that helps