Adil,
Ur solution will not work either in ASP or ASP.net
Nad,
U need to pass variable from ASP.net to Flash like this
either use
Response.write "myText=Nothing happen new today"
or
Use asp:literal (this is better than response.write)
<script language="VB" runat="server">
...
litTime.text="myText=Nothi
...
</SCRIPT>
<form runat="server">
<asp:literal id="lit1" runat="server"/>
...
</FORM>
inside flash U can access like this
Create dynamic text box with variable 'myText'
loadVariablesNum("pageName
That's it. If U need any further help let me know.
Cheers
RootDir
Main Topics
Browse All Topics





by: adilkhanPosted on 2003-06-01 at 19:42:24ID: 8626602
yup
.asp", "")
lets say u have a variable in ASP and you want to grab the value within Flash page do this.
<%
test="Hello World"
%>
in flash make a text Box and name it "test"
then on your Frame use the following action
loadVariablesNum("pageName
so textBox will read the value of test Variable in Flash file. so the txtBox name and variable name in asp page must be same. and use loadvariables to Pass values.