Link to home
Start Free TrialLog in
Avatar of Sam Cohen
Sam CohenFlag for United States of America

asked on

Sending form info from Flash to Access dB using asp

Sending form info from Flash to Access dB using asp
I have been trying to do this all day!!   this is what i have OnRelease button:
I have a few textboxes on my flash form that i want send to db....how

on( release ){
if ((name.length < 1) ||  (email.length < 1) ||  (company.length < 1) ||  (phone.length < 1) ||  (city.length < 1) ||  (postcode.length < 1) ||  (country.length < 1)) {
    required._visible = true
    _level3._visible = false
    } else {
    loadVariables("submitinfo.asp", 0, "POST");
      
    }
}
 is this right so far??? what do i do next to pass it to asp page and how to arrange it? how can i connect successfully and put in my mdb?
SOLUTION
Avatar of Vicker Leung
Vicker Leung
Flag of Hong Kong image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Sam Cohen

ASKER

Thanks Vicker,

what is the name.text?
wouldnt it be:
data_vars.name = name;  ?

also what do i put on my asp page to send the entries to the db?
all4artz

if that "name" is a text field
then "name.text" will return the text inside the text field

for ASP part, i guess you need to seek other help
cause I dont' know ASP
sorry for that.

Vicker
ok thanks,.......futhermore the "loadvaribles" should post to any page right?
and is it possible to use getURL to post ?
NOT WORKING :(
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Billystyx
Billystyx

Can you post a link to the fla, and code for the asp?

billystyx
How did you go?
Can you comment, and maybe we can get it sorted.

Billystyx