You need to keep the same session ID for the same visitor in the same connection. If session ID changes in between page redirection, It will probably break your code especially if you are using session ID to improve ViewState complexity such as the example below:
Page.ViewStateUserKey = Session.SessionID;
Solution
- Make sure you don’t create session cookie repeatedly. If the line that you create session cookie is executed between postbacks, you will end up having a different session ID since the session cookie is recreated.
Response.Cookies.Add(new HttpCookie("id", ""))
- Make sure you don’t generate session ID repeatedly. An example line of session ID creation:
objManageSession.CreateSessionID(this.Context);
- Assign a dummy value to your session cookie in
Global.asax
(See details here)
protected void Session_Start(object sender, EventArgs e) { // It adds an entry to the Session object so the sessionID is kept for the entire session Session["init"] = "session start"; }
- Assign a dummy value to your session cookie in
Page_Load
method of homepage:
protected void Page_Load(object sender, EventArgs e) { Session["init"] = "session start"; }
It’s working in server but not in localhost?
In your web.config file, change the value of httpOnlyCookies
and requireSSL
parameters to false
. If you keep them in true, local server will force application to regenerate session between page redirections. Make sure to switch these values back to true
before you migrate your code to the server.
<httpCookies httpOnlyCookies="false" requireSSL="false"/>
Thanks for the suggestion!
Can I reset session id before login and After login