Hello!
I have a form on the page, and user can submit it only once, if he submits the data again, it must be compared to the information he provided earlier and if it is new (it has been changed somehow), then he can post the form again.
I use ViewState and compare values stored earlier with the text in form fields. It works just perfect in the cycles of postbacks, but when user goes to another page and then returns, the Viewstate values are lost. I think i should use cookies, but cookies have got limited size (less than 2 KB) . Should I try them with Viewstate or Viewstates aren't needed? Or maybe Session variables are better?
Which way should I choose?