|
Session expiration is a headache, you look at how to set it in your webconfig,
But generally speaking, it is useless to set up, depending on what you want to achieve, there is no need to use session at all.
You can just pass it directly in the get way, Response.Redirect("xxx.aspx?id='"+ID+"'")
Just use Request.QurryString["id"] on the xxx.aspx page to receive it... |
|