I have a simple Flash movie where I'm loading some variables from an ASP page. In the simple case, this should work, right?:
However, it seems like Flash is actually reading the VB code in the ASP page instead of evaluating it. So when I test my movie, and list variables, I get:
The only way it actually works is if my ASP file looks exactly like this:
No tags, no quotes, nothing. Which kind of messes me up when I want to start retrieving these values from a database. Why would it behave like this? Is there something I've overlooked about this whole process? Forgive me if this is a simple answer, I'm very new to Flash. Thanks in advance for any tips.
--Ryan
Code:
<% response.write("testvalue=345&success=1") %>
Code:
Variable _level0.<esponse.Write("testvalue = "345"
Variable _level0.success = "1\""
Code:
testvalue=345&success=1
--Ryan