Question

I got this is in my homework question. Help Please

Was it helpful?

Solution

Try this: http://msdn.microsoft.com/en-us/library/aa479314.aspx

The basic idea is that you place information in the url instead of the cookie

OTHER TIPS

By setting the cookieless property to true in web.config:

<sessionState cookieless="true" />

Put the session ID in the url instead, however this is more open to security holes (for instance when people share a URL, the session ID is still there)

It's a config entry in the web.config file.

<sessionState cookieless="true" />

http://msdn.microsoft.com/en-us/library/aa479314.aspx

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top