Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

get data from asp in flash thanks

Status
Not open for further replies.

melnet

Programmer
Jul 8, 2003
77
HK
Hello
flash code:
stop();
asp = new LoadVars();
asp.onLoad = function(success) {
if (success) {
// flash_name= "yes";
flash_name =name;
} else {
flash_name = "no";
}
};
asp.load("display_guest.asp");
Dymanic Text's var:flash_name

asp:
sql="select * from guestbook"
set rs=kc.execute(sql)

name=rs("name")
Response.write "&name=" & name

after it run the flash program, no data display...
how to solve....

thanks.... ; ;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top