Hey Friends, anyone knows how to stop timeout in asp.net i.e. can we alert some msg to client whenever timeout occurs and redirect to login page...?? thanx
If you mean response timeout then: Response.Expires = (minutes) or for Session: Session.Timeout = (minutes)
Can be configure in Web.Config or send an aspx request to renew session every 10 minutes with javascript code. So if user has browser open the session will never time out