Reputation: 13743
When we disabled the viewstate in gridview its lose value but this case not true with Textbox control why?
Upvotes: 0
Views: 792
Reputation: 262919
Because TextBox
doesn't need ViewState
to persist its value. It just fetches it from the POST
request during initialization.
Upvotes: 1