What is view state management in asp net?



What is view state management in asp net?..

Answer / Alok Gautam

View state management in ASP.NET is a feature that allows the page and control properties to be persisted across postbacks, ensuring that the user's selection or data entry doesn't get lost when the page is submitted.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

write six HTTP request method?

4 Answers   IBM,


What is difference between session and cookies?

1 Answers  


Explain Apache web servers ? How can you get ASP.NET running in Apache web servers - why should you do this?

1 Answers   Siebel,


What r Callbacks in ASP.NET?

1 Answers  


What are cookies in your browser?

1 Answers  


What is the procedure to create the environment for asp.net? : asp.net mvc

1 Answers  


How is a session stored and maintained in asp.net?

1 Answers  


Why do we use asp.net?

1 Answers  


When working with ASP.Net server controls, it is important to use the right event handlers to capture the event for the application to function properly. What event would you use to capture the selection of a new item in a DropDownList control? a) The Click event. b) The SelectionChanged event. c) The SelectionIndexChanged event. d) The ChangedSelection event.

4 Answers   Syntax Softtech,


How To Send Value one page to Another Page On MasterMenu Click ? please Tell Me!

3 Answers   Accenture,


Why we go for mvc instead of asp.net? : Asp.Net MVC

1 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,


Categories