Multiple choice technology web technology

Declaring EnableViewState="false" at page level will make a Textbox not to retain it's value between postbacks.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Setting EnableViewState="false" at the page level disables ViewState for all controls on that page, meaning TextBox values will not be retained between postbacks. Without ViewState, controls revert to their default values on each postback unless values are manually restored.