vote up 0 vote down star

Hi All, I want to know is there any way to expire the viewstate after a particuler given time.

flag

Duplicate stackoverflow.com/questions/233828/… (not exact but close enough) – James Oct 15 at 20:54

3 Answers

vote up 1 vote down check

Have you tried using Session instead. It will be better security than placing an expiration date into the ViewState which can be modified by the user. Sessions have a default expiration of 20 minutes, but you can modify that.

link|flag
vote up 0 vote down

It sounds as if you need to use cookies (not exactly like viewstate but can hold data too). You can force cookies to expire or set an expiration date but you cannot do the same view state.

link|flag
vote up 0 vote down

No, there isn't an expiration feature of the viewstate. But maybe you can set a datetime value to an viewstate variable that you'll check later for your own expiration logic.

link|flag
The ViewState can be modified by the user. – Yuriy Faktorovich Oct 15 at 21:03

Your Answer

Get an OpenID
or

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