hello sir...
i m developing website in that i m not using any jquery, javascript and session and cookie. i want my any page to redirect to login page after 15 minutes when user is inactive.
plz help
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Bhasker DasPosted Aug 7, 2014, 4:06 AM
protected void Session_End(object sender, EventArgs e)
{
// Add session clean up code here
Response.Redirect("logout.aspx");
}