I have one huge doubt
Why session ID is not as same in all the webpages?
CODE:
In webpage1.aspx.cs
String sess1 = Session.SessionID.ToString();
In webpage2.aspx.cs
String sess2 = Session.SessionID.ToString();
When i load my webpage1.aspx, it shows one unique sessionID, and navigate to webpage2.aspx it shows another new unique sessionID
Both the sessionIDs (sess1, sess2) should be same, it's generating different sessionIDs.
May i why ??
and also how to maintain that sessionID in all the aspx pages