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 Limitation of using Viewstate for state
What are benefits and Limitation 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 limitation 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.
Below is sample of storing values in view state.
this.ViewState["EnterTime"] = DateTime.Now.ToString();
2007-10-23, 5044👍, 0💬
Popular Posts:
What is V model in testing? V model map’s the type of test to the stage of development in a project....
How To Compile a JUnit Test Class? Compiling a JUnit test class is like compiling any other Java cla...
What Is URI? URI (Uniform Resource Identifier) is a superset of URL. URI provides a simple and exten...
What’s the difference between Unit testing, Assembly testing and Regression testing? Unit testing is...
The object that contains all the properties and methods for every ASP.NET page, that is built is .. ...