Answer Posted / prashant
ViewState is the mechanism ASP.NET uses to keep track of
server control state values that don’t otherwise post back
as part of the HTTP form. ViewState Maintains the UI State
of a Page
ViewState is base64-encoded. It is not encrypted but it can
be encrypted by setting EnableViewStatMAC=”true” & setting
the machineKey validation type to 3DES. If you want to NOT
maintain the ViewState, include the directive < %@ Page
EnableViewState="false" % > at the top of an .aspx page or
add the attribute EnableViewState=”false” to any control.
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
What are pdbs?
What are the namespace available in .net?
What are an object and a class?
What does jit compilation do in .net?
What is gac in .net?
How will you do redo and undo in textbox control?
Can I write il programs directly?
Explain garbage collection?
As you know read-only variables and constants have many similarities, but what is at least one way that they differ?
Which dll is required to translate xml to sql in internet information server (iis)?
object is physical and class is logical..here class is not occupying any memory as our definition of class but i got a question then the class where it stores if it is not occupying any memory....
What are the difference bbetween value type & reference types ? Example from .net. Integer & struct are value types or reference types in .net?
Explain what is the reason of occurring overflow-underflow arithmetic exception error, it shows error message when we run our program by adding control?
What is delegation in .net?
Explain what is a delegate?