Open In App

ASP Request Object

The ASP Request Object is used to retrieve the information from the client browser. The Request Object is used when the client wants to request for a particular page from the server.

 The Request Object has properties, methods, and collections that are given below



Collections : 

Properties 



 

Methods

Examples: Below code illustrates that how to return the value of cookies named as “site”. A (“Request.cookies” is used to get a cookie value)




<%
Response.Cookies("site")="GeeksforGeeks"
sitename=Request.Cookies("site")
response.write("Lets Code with " & sitename)
%>

Output 

Lets code with GeeksforGeeks
Article Tags :