Hi,
I'm using a CallBack panel on my page that automatically refreshes using client side javascript. The code behind in the page has the following line that directs the user to a logon page if they are not authenticated.
Quote:if (!User.Identity.IsAuthenticated)
Response.Redirect("login.aspx?DestinationPageUrl=ordermanager.aspx");
After 30 minutes the user's authentication cookie expires. The next time the page refreshes it generates a client side error message "EO.WebControls Client Side Debug Message:..." stating the server didn't recognize the request.
How can I work around this?
Thanks,
Chris