Expert Developer JavaScript Question:
What is the difference between ViewState and SessionState?
Answer:
'ViewState' is specific to a page in a session.
'SessionState' is specific to user specific data that can be accessed across all pages in the web application.
'SessionState' is specific to user specific data that can be accessed across all pages in the web application.
Previous Question | Next Question |
Explain JavaScript closures by example? | What Boolean operators can be used in JavaScript? |