benjamin77
November 7th, 2002, 11:34 AM
I have an asp that does some computations then writes back this
Response.Write "first1="& first
Response.Write "&operand1="& operand
Response.Write "&second1="& second
if i activate it with an html page i get back this
first1=987&operand1=j&second1=987
the numbers are generated from user input
I activate from flash i get back garbage
if i just use
Response.Write "first1="& "A string of some sort"
its fed back to my movie
I can also echo back whats was in the input box like if i have
big = Request.form("txtmain") ' txtmain being the input box in the flash movie
and then
Response.Write "first1="& big
this works , the contents of the input box are echoed back
I tried casting my other variables using the cstr() but it still doesn't work
is there some way variables have to be encoded for the flash movie to read them,
Response.Write "first1="& first
Response.Write "&operand1="& operand
Response.Write "&second1="& second
if i activate it with an html page i get back this
first1=987&operand1=j&second1=987
the numbers are generated from user input
I activate from flash i get back garbage
if i just use
Response.Write "first1="& "A string of some sort"
its fed back to my movie
I can also echo back whats was in the input box like if i have
big = Request.form("txtmain") ' txtmain being the input box in the flash movie
and then
Response.Write "first1="& big
this works , the contents of the input box are echoed back
I tried casting my other variables using the cstr() but it still doesn't work
is there some way variables have to be encoded for the flash movie to read them,