|
|
|
|
|
| | |
| |
Active Server Pages help tutorial how to ASP Help ASP Tutorials ASP Programming ASP Code - ASP Free CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
|
|
Subject: |
Re: POST a FORM and get the output in a variable / stream |
|
From: |
Shailesh Lolam |
|
Date: |
4/6/2000 9:23:36 AM |
|
IP: |
203.94.239.236 |
Hi there,
If u want to retrieve all the Form variables u can use Request objects of the ASP.
i.e. if the FORM is using POST method use
myvar = Request.Form("variable_name")
if the FORM is using GET method then use
myvar = Request.QueryString("variable_name")
if the FORM can some time can contain GET method and sometime POST method then use
myvar = Request("variable_name")
the above code can be used when one form processing page is serving more than one requesting pages
Good Luck
Shailesh Lolam |
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|