# Forms in Flash MX w/ ASP

**URL:** https://forum.kirupa.com/t/forms-in-flash-mx-w-asp/473
**Category:** flash
**Created:** [July 18, 2002, 3:54pm UTC](https://forum.kirupa.com/t/forms-in-flash-mx-w-asp/473 "2002-07-18T15:54:34Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![jagreen78](https://avatars.discourse-cdn.com/v4/letter/j/bc79bd/32.png) [@jagreen78](https://forum.kirupa.com/u/jagreen78)
#### Post date: [July 18, 2002, 3:54pm UTC](https://forum.kirupa.com/t/forms-in-flash-mx-w-asp/473/1 "2002-07-18T15:54:34Z")

</div>

I have a form in Flash MX that asks simply for  
Name:  
Email:  
Phone:  
Comments:

The information is gathered in Actionscript like so when the submit button is pushed:

submitURL = “[http://www.site.com/submit.asp](http://www.site.com/submit.asp)”;

function onSubmit() {  
// Create a new LoadVars instance for the form data  
formData = new LoadVars();  
// Initialize formData variables:  
formData.Name = “”;  
formData.Email = “”;  
formData.Phone = “”;  
formData.Concerns = “”;  
// Gather the order information into a LoadVars instance.  
formData.Name = txtName.text();  
formData.Email = txtEmail.text();  
formData.Phone = txtPhone.text();  
formData.Concerns = txtConcerns.text();

```
// Submit the order data
formData.send(submitURL, "_self", "POST");

```

}

When I post this information to my asp page, none of my data seems to be sent? On my asp page I’m using  
“Request.Form(“Name”)” and so on to gather the information.  
But nothing is being put into my asp page? Anyone know what I’m doing wrong?
