Variables not being passed

I am trying to use the tutorial on this site to create a simple form submission to my database via ASP. I couldn’t open the sample - I am on MX. But I followed the steps on the webpage.

My variables are not being passed. All of the Response.Write statements in my ASP page are coming up blank.

So I have the 3 input text fields. I specified each with the same variable name as used in the tutorial (fname, lname, email, message). I also used those same names as the instance names but that didn’t help so I’ve deleted it. So currently there are no instance names, just variable names.

And then there is a submit button with the code from the tutorial:

on(press){
getURL(“http://mysite.com/processForm.asp",0,"post”);
}

Thats all that is in the movie.

The ASP page comes up, and the database submission completes, but all the variables and database fields are blank.