Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Accesing Cookies thru VB code

Status
Not open for further replies.

vinu77

Programmer
Jan 11, 2001
13
0
0
IN
Hi

Is it possible to access cookies created by response.cookies object in asp page?

Bye vinod
 
Sure,


request.cookies.item("COOKIENAME")


example:

dim yourVariable

yourVariable = request.cookies.item("cookiename")

then use the variable to your hearts content. ;)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top