-2

Viewstate or sessionstate? This is to save the variables to a specific user then display them on the output page. Btw, these variables will be saved on atleast 5 different pages before it's outputted, so I want to be able to store them. Thanks!

cala
  • 767
  • 4
  • 11
  • 28
  • Please enter this in Google search box - **[site:stackoverflow.com SessionState or Viewstate](https://www.google.com/#q=site%3Astackoverflow.com+SessionState+or+Viewstate)** – Win Feb 21 '14 at 21:35
  • @Win the problem is that google doesn't help me, this site is way better and more helpful – cala Feb 21 '14 at 21:37
  • 1
    **[site:stackoverflow.com SessionState or Viewstate](https://www.google.com/#q=site%3Astackoverflow.com+SessionState+or+Viewstate)** will give you all previous answers in SO. – Win Feb 21 '14 at 21:38

1 Answers1

0

Viewstate typically stores data for a single page. Session state stores data for a session. If you are planning (as you have said) on persisting values over a several pages I would go with session state.

Mike Cheel
  • 12,626
  • 10
  • 72
  • 101