How will u decide when to use caching and when to use
viewstate?
Answers were Sorted based on User's Feedback
Answer / richa
When it comes to choosing between ViewState and Caching it
all comes down to what you are doing. ViewState is an ideal
candidate if you are planning to save small values. Mostly
values of server controls are saved in ViewState. If you
plan to store large datasets, datatables or collections than
data caching is an excellent candidate.
Is This Answer Correct ? | 19 Yes | 0 No |
Answer / ajai
If you want to store large datasets and datatables than
data caching is an good option and for small values you
should use viewstate.
Is This Answer Correct ? | 12 Yes | 1 No |
Answer / satish v itagi
ViewState has no automatic expiration, it is reloaded with
every page created and served by server. Caching leaves
data away from page life, its scope can be page, session or
application. Caching can have its own custom life span
defined. Conventionally, caching is used for large data.
Bigger viewstate data, slower will be page loading. Bigger
caching, faster will be page loading!
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / anurag vatsa
storge of large dataset & data tables should be done using
data caching while for small data values we can use view
state.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ajay
when u want to store large data like(dataset & data tables) then u can use caching and if u want to use small data then u can choose viewstate....
Is This Answer Correct ? | 0 Yes | 0 No |
Give 2 examples for scenarios when routing is not applied?
What does the hotspot class in .net do?
What are the security types in ASP/ASP.NET? Different Authentication modes?
What is WCF? Pls Explain clearly with exmple.
What is Boxing and Unboxing?
7 Answers Accenture, IBM, Tech Mahindra,
version information of assembly consist of _________ values.
How to deploy the Asp.Net Project ?
What is the difference between Trace and Debug?
What is bound controls
What are validators and list some validators of asp.net?
Which ASP.NET configuration options are supported in the ASP.NET implementation on the shared web hosting platform?
What is reflection and disadvantages of reflection ?