Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What are benefits and limitations of using Viewstate for state management?
.NET INTERVIEW QUESTIONS - What are benefits and limitations of using Viewstate for state management?
✍: Guest
Following are the benefits of using Viewstate :-
* No server resources are required because state is in a structure in the page code.
* Simplicity.
* States are retained automatically.
* The values in view state are hashed, compressed, and encoded, thus representing a higher state of security than hidden fields.
* View state is good for caching data in Web frame configurations because the data is cached on the client.
Following are the limitations of using Viewstate:-
* Page loading and posting performance decreases when large values are stored because view state is stored in the page.
* Although view state stores data in a hashed format, it can still be tampered because it is stored in a hidden field on the page. The information in the hidden field can also be seen if the page output source is viewed directly, creating a potential security risk.
Following is an example of storing values in view state.
this.ViewState["EnterTime"] = DateTime.Now.ToString();
2009-07-07, 5102👍, 0💬
Popular Posts:
Can JavaScript steal text from your clipboard? It is true, text you last copied for pasting (copy &a...
interview.FYIcenter.com offers a collections of interview questions and answers for software and Web...
Can each Java object keep track of all the threads that want to exclusively access to it?
How Large Can a Single Cookie Be? - PHP Script Tips - Understanding and Managing Cookies How large c...
What is the difference between Session State and ViewState? ViewState is specific to a page in a ses...