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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

loadvar problem no solution jet

Status
Not open for further replies.

rnby

Technical User
Jan 25, 2005
8
BE
i get this message

onLoad=%5Btype%20Function%5D

this is the code i use
____________________________________________________
_root.serverloc = "logins = new LoadVars();
lgnur4 = _root.serverloc + "check.asp";
logins.load(lgnur4, this);
logins.onLoad = function()
{
_root.id = this.id;
_root.username = this.username;
_root.sessionid = this.session;
_global.id = this.id;
trace(this);
_global.sessionid = this.session;
_global.username = this.username;
if (this.username = "")
{
this.needtoligin.text = "You need to Log-In";
}
else
{
readyto_go = true;
loadimg();
//gotoAndPlay("edit", 1);
}
};
________________________________________________________



the asp file returns this

_______________________________________________________

&session=1050809606&username=admin&id=1

_______________________________________________________
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top