What is view state and how this can be done and was this
there in asp ?

Answers were Sorted based on User's Feedback



What is view state and how this can be done and was this there in asp ?..

Answer / babu reddy

View state one of the state management process
it is done by using hidden fields

Is This Answer Correct ?    5 Yes 0 No

What is view state and how this can be done and was this there in asp ?..

Answer / anjireddy bapathu

ViewState is the mechanism that allows state values to be preserved across page postbacks.
it is done by using hidden fields

Is This Answer Correct ?    0 Yes 0 No

What is view state and how this can be done and was this there in asp ?..

Answer / ranjans

View state is the method to preserve the values of the page and controls between the round trip. It is a Page Level state management technique. View state is turned on by default.
Key feature are: 1. Retails the value of the control after post-back without using sessions
2. Creates a custom view provider that lets you store View State information either in the page or on the client machine (SQL Database)

This is not there in ASP . ASP is a stateless web application. That means a new instance of a page is created every time when we make a request to the server to get the page and after the round trip our page has been lost immediately.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

What is the difference between globalization and localization?

0 Answers  


About delegates ?

7 Answers   TCS,


Define asp.net caching?

0 Answers  


What is ViewState? How is it encoded? Is it encrypted? Who uses ViewState ?

1 Answers  


What is difference between machine.config and Web.Config?

4 Answers   Accenture, BirlaSoft, Le Logiciel,






What are the different types of sessions in asp.net?

0 Answers  


Below is a code extract from an ASP.Net application. The code basically reads data from the “name” field in the “members” table and prints them onto the webpage. Using the assumptions provided, fill in the 4 blanks below so that the code will run correctly. ‘Assumptions: ‘conn_str is a variable that holds the connection string to the database ‘Objects dbcomm and dbread are already declared earlier dbcomm = New OleDbCommand("SELECT name FROM members", conn_str) dbread = dbcomm._______________ _____________________ response.write(_______________) _____________________ dbread.Close()

4 Answers   Techno Solutions,


What are runtime hosts?

4 Answers   Microsoft,


Mention the execution process for managed code?

0 Answers  


What are uri parameters?

0 Answers  


any body help me. Is it possible to convert text in gif images into word document with the same text? thanks in advance.

2 Answers  


How can we implement a identity (sql server) call in an asp.net page?

0 Answers  


Categories