Hello everyone,
I met with strange session issue. I have developed a web site which uses session to track user specific information to determine whether a specific user has permission to access some part of the web site. I am using VSTS 2008 + .Net 3.5 + C# to develop ASP.Net web site.
In my design, when I access http://mysite/sitemanager, if no session ID is available, users will be asked to input their user name and password (if passed password checking, available session ID will be granted); if session ID is available, it means user has site management permission and authenticated, then all the functions from site manager should be accessible by the user -- i.e. all login user has permission to access site manager.
The trouble scenario is like this, (1) I access http://mysite/sitemanager from a new IE window, since I have not login before, and I will login using my credential and granted site management permission, (2) then I (not closing IE) enter http://www.google.com into the address bar of the same IE window to replace http://mysite/sitemanager, Google apprears, (3) then I paste address http://mysite/sitemanager into the same IE window to access, I am surprised I am not asking for permission to input password.
Any ideas what is wrong? What I want is in step (3) user should be asked to input password.
thanks in advance, George