Should I be able to read a cookie created in ASP?

TheWizardofInt

Junior Contributor
Joined
Dec 31, 1969
Messages
333
Location
Orlando, FL
My program hands off to and from and older ASP website.

This website uses cookies to pass data between pages.

Should I be able to get to those? I know it isn't sufficient just to call them by name
 
Why isn't it sufficient to call them by their name?
I am quite new to asp.net but have quite a lot of experience with web applications. And as cookies are independent of the language you use. Therefore it shouldn't matter what language you use to access them and their values.
 
You're right - I saw where I was making a mistake in accessing them.

If I have a website running under localhost called "Fred", and I create a cookie called "Dave", where should I look to find the cookie?
 
Back
Top