I am trying to bring data into Flash from SQL server using this code.
Dim strVDS as string
strVDS = "success=True"
strVDS = strVDS & "&empName=" & server.UrlEncode(empDS.tables("employeeinfo"
.Rows(0).Item("firstName"
) & _
"&empaddress=" & server.UrlEncode(empDS.tables("employeeinfo"
.Rows(0).Item("address"
)
then in flash I have this
loadVariablesNum("flash.aspx?", 0);
And
if(_root.success eq "True"
{
gotoAndStop(5);
}else if(_root.success eq "False"
{
gotoandstop(6);
}else
{
_root.LoadStatus = "loading...";
}
It seems to keep running though all my pages and ignoring my actionscript telling to goto a frame and stop. Can someone help.
Dim strVDS as string
strVDS = "success=True"
strVDS = strVDS & "&empName=" & server.UrlEncode(empDS.tables("employeeinfo"


"&empaddress=" & server.UrlEncode(empDS.tables("employeeinfo"


then in flash I have this
loadVariablesNum("flash.aspx?", 0);
And
if(_root.success eq "True"

{
gotoAndStop(5);
}else if(_root.success eq "False"

{
gotoandstop(6);
}else
{
_root.LoadStatus = "loading...";
}
It seems to keep running though all my pages and ignoring my actionscript telling to goto a frame and stop. Can someone help.