G
Guest
I can't get WebForm1 to load load automatically after a session timeout, with the following code. How can I do so
In Web.config
<sessionState
mode="InProc
timeout="1"
/
In Global.asax.cs
protected void Session_End(Object sender, EventArgs e
Response.Redirect("WebForm1.aspx")
}
In Web.config
<sessionState
mode="InProc
timeout="1"
/
In Global.asax.cs
protected void Session_End(Object sender, EventArgs e
Response.Redirect("WebForm1.aspx")
}