set objrecord=objconn.execute("insert into mydbdata(firstName,lastName)
values('john','Miranda')") //ASP code



What should be done to replace 'john' and 'Miranda' with actual values from
flash text fields?


It depends on how the vars are sent from Flash.

If sent via a GET (i.e. the vars form part of the asp target page URL, as a querystring, then the asp uses:

Request.Querystring("some_value_name")

If the data is sent in the form of a POST request, then the asp is:

Request.Form("some_value_name")

HTH

_________________________________________________________________
Need a break? Find your escape route with Live Search Maps. http://maps.live.com/default.aspx?ss=Restaurants~Hotels~Amusement%20Park&cp=33.832922~-117.915659&style=r&lvl=13&tilt=-90&dir=0&alt=-1000&scene=1118863&encType=1&FORM=MGAC01

_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to