I have a session time of 20 min. How do I make an information to the user when the session is exceeded and telling him to login once more?
The way I have done it now only transfers the user to login side, not telling him that the session is exceeded.
This is done applying this code in the web.config:
Code:<authentication mode="Forms"> <forms name=".hpl" loginUrl="login.aspx" protection="All" timeout="20" /> </authentication>




Reply With Quote