ryanmills
07-02-2005, 02:44 PM
What would be the proper syntax for accessing vars passed using POST? If it matters I'm passing a var sent thru POST to a function. I hope that makes sense... :confused:
-Ryan
-Ryan
|
Click to See Complete Forum and Search --> : Accessing POST ryanmills 07-02-2005, 02:44 PM What would be the proper syntax for accessing vars passed using POST? If it matters I'm passing a var sent thru POST to a function. I hope that makes sense... :confused: -Ryan HaganeNoKokoro 07-02-2005, 03:02 PM I don't think javascript can access postdata. Postdata is sent to the server, not to the client; your javascript can send postdata to a server by submitting a form whose method="POST" Unless this is a server-side javascript in an ASP page (not really javascript, but Microsoft JScript). Then postdata is accessed using the Request.Form (http://www.w3schools.com/asp/coll_form.asp) object. If this is an ASP / JScript question, it should probably be in the asp forum, but... whatever. webdeveloper.com
Copyright Internet.com Inc., All Rights Reserved. |