Persisting SessionID Across Multiple Requests
Today we had a problem while working on Darden’s project.
We were using the SessionID as a unique key to store some information about the behavior of the user surfing the site.
The SessionID was getting changed with every page request.
The trivial solution was adding a global.asax file to the project.
and what, pray tell, is in that little global.asax file?
That’s what’s weird, we haven’t added/changed anything to the default global.asax file, but by just adding that file to the project the SessionID persisted !!!