Need very urgent help! (MX & ASP)

Hi guys,

attached here r .fla & .asp files. In this simple program i m retreiving a value from asp & displaying in a text field…
but its not displaying the value

any help is greatly appreciated…
thanks

Here you go …

I corrected some things in your asp… ALWAYS DIM variables

Also … i rewrote the actionscript… its now much cleaner and user friendly :))

url =“token.asp”
studentVar = new LoadVars();
studentVar.load(url);
studentVar.onLoad = function(){
trace(“string:” + studentVar.param);
str += studentVar.param
}
onEnterFrame = function(){
if(!studentVar.loaded){
msg = “loading”
}else{
msg = “done”
}
}

Thanks a lot…
its really a great help.

take out the trace command… it was for testing and i forgot to // it out.