if you disable view state of a textbox will it maintain
data during postbacks.if yes reason
Answer Posted / sam
Yes. It maintain the data during postbacks.
Reason:Form controls, such as TextBox, retain their values
between posts even when view state is disabled. The values
of these controls do not need to be preserved in the
VIEWSTATE hidden form field because they are actually being
submitted to the server on each form post.
| Is This Answer Correct ? | 52 Yes | 1 No |
Post New Answer View All Answers
What is a global postback url?
Where is asp.net session stored?
What is the request flow used for asp.net mvc framework? : asp.net mvc
What is the most appropriate lifetime for a database connection/orm context in an asp.net mvc application? : Asp.Net MVC
Can you dynamically assign a Master Page?
What is AutoEventWireup attribute for ?
What is use of <% %> in asp.net?
What is the difference between dispose() and finalize()?
What is full trust in asp.net?
How does cookies work in asp net?
How to sign out from forms authentication?
Why session is more secure than cookies?
Write a code for sending an email from asp.net application.
What tags do you need to add within the asp:datagrid tags to bind columns manually? How?
Explain the difference between overriding and overloading?