I have an application in ASP.NET that uses forms authentication. It has the following code.

if (User.Identity.IsAuthenticated)
        ViewStateUserKey = User.Identity.Name;

Stepping through I see this code executes on each page load. When a logged in user requests the page, the ViewStateUserKey is filled in with their username. If you let the page sit till forms auth times out, the user is no longer logged in, and a post back fails on validation of the viewstate because the name is now null. However I have noticed if I put other buttons on the screen, and the post back, it doesn't fail, even after authentication has timed out. Should this error every time it times out?

link|improve this question

70% accept rate
1  
To clarify: Is this code in Page_Init? – StriplingWarrior Mar 29 '11 at 17:38
Yes, the code is in page init, and works correctly if the forms auth doesn't timeout. – Anthony D Mar 29 '11 at 18:03
feedback

1 Answer

your answer is easy if this is in page_init viewstate loads after page_init. Here you have the description of the Pagelifecycle which describes, that the load view state happens after the page init event. so the view variables are not available in the page_init

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.