Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How will u decide when to use caching and when to use
viewstate?

Answers were Sorted based on User's Feedback



How will u decide when to use caching and when to use viewstate?..

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

How will u decide when to use caching and when to use viewstate?..

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

How will u decide when to use caching and when to use viewstate?..

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

How will u decide when to use caching and when to use viewstate?..

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

How will u decide when to use caching and when to use viewstate?..

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

Post New Answer

More ASP.NET Interview Questions

Can we mention error in web.config file?

2 Answers  


What is meant by ispostback in asp net?

0 Answers  


Why do we need a web application session?

0 Answers  


Mention the execution process for managed code?

0 Answers  


You need to be able to retrieve data from DataSet object that has four DataTable objects. There are currently UniqueConstraint and ForeignKeyConstraint Object on the DataTable objects to enforce the data rules. You find that you can retrieve the data from the individual DataTable objects, but you are not able to retrieve the data from the combination of DataTable objects in a Parent/Child manner. What should you do to able to retrieve the data in a Parent/Child manner? a) Set the EnforceParentChild parameter of the DataSet to True. b) Set the EnforceRelation parameter of the Relations collection to True. c) Add DataRelation objects to the Relations Collection to make the DataSet present the data in Parent/Child manner. d) Add a primary key and a foreign key to each of the DataTable objects that should present the data in a Parent/Child manner.

1 Answers   Syntax Softtech,


Explain the working of passport authentication.

0 Answers  


Explain Areas in MVC?

0 Answers   B-Ways TecnoSoft,


How you can add an event handler?

0 Answers  


Explain about asp.net 2.0 themes?

0 Answers  


What is the life cycle of web page?

0 Answers  


What is AutoEventWireup attribute for ?

0 Answers  


Describe the difference between inline and code behind - which is best in a loosely coupled solution Tightly coupled - INLINE

2 Answers  


Categories