Unable to get the value in TextInput

I use TextInput component to capture user’s info for my contact form and invoke an asp file to send out the mail. But value entered in the TextInput somehow is not passed to ASP. Can someone help to find out what the problem is? The following is my code:

on(click){
var LastName = this._parent.txtLastName.text;
trace(LastName);
this._parent.loadVariables(“email.asp”, “POST”);
}