AS2 form data to ASP form

I’ve scoured the forum for a possible solution and nothing I’ve found seems to work. I have a form in Flash AS2 that I want to pass that data to an ASP page where it’s processed, but it should also send the user to that page.

FLA has two form fields “userName” and “pword”
My actionscript looks like

buttonSubmit.onRelease = function() {
myVars = new LoadVars();
myVars.userName = regFields.userName.text;
myVars.send(“login.asp”,"_self",“POST”);
}

I’ve even tried just using the getURL(“login.asp”,"_self",“POST”); method and I cannot get the variable info to send to the page.

I’ve also tried sendAndLoad too with no success as that won’t send the user to the next page.