The Request object is used to get information from the client. It is also used to obtain server variables.
This code shows how to submit a form using the Get method.
<html> <head> <title> </title> </head> <body> <form action="request.asp" method="get"> <br> </body> </html> |
This code shows how to retrieve the values.
<html> <head> <title> </title> </head> <body> Hi,you must be about <%=Request.QueryString("age")%> years old! </body> </html> |
This code shows how to submit a form using the Post method.
<html> <head> <title> </title> </head> <body> <form action="request.asp" method="post"> <br> </body> </html> |
This code shows how to retrieve the values.
<html> <head> <title> </title> </head> <body> Hi,you must be about <%=Request.Form("age")%> years old! </body> </html> |
Asp Discussion
- - How to upload files
- - Offshore outsourcing comp
- - Example of editing in Dat
- - Example of Inserting and
- - Example of Image Upload





