Forums
This topic is locked
pass value to flash from asp
Posted 11 Sep 2006 07:13:56
1
has voted
11 Sep 2006 07:13:56 Lin Chin Tee posted:
how to pass the value from asp file to flash? my code in asp as at below:<pre id=code><font face=courier size=2 id=code>rsStatus.Open "SELECT * FROM book", oConn, 2, 3
seat_status = rsStatus("seat"
seatAV="&seatAV="&seat_status
Response.Write seatAV</font id=code></pre id=code>
and the code at Flash is as below:
<pre id=code><font face=courier size=2 id=code>stop();
seat_array = seatAV.split(","
seat_length = seat_array.length; </font id=code></pre id=code>
why i fail to pass the value seatAV to flash? what is my error? thank for help.