Hi, I have a web page where the user select a Company and with that I keep the Company name in memory though a Session but when I go to the next page the Session only last like 5 minutes? Any reason why and how I can fix this, I did extend the Session state in the Web.config but that did not work.
Example: Session("CompanyName") = "Bytes Technology"
In my web.config I have: timeout="40" />
I move from Default.aspx to CompanyDetail.aspx with my Session("CompanyName")
But if I let the program idle in CompanyDetail.aspx I lose the Session State.
Any ideas?
Regards Etienne