Which controls have ViewState maintained?
问题 I am trying to wrap my head around the control infrastructure to understand which ones ASP.NET maintains view state for. There are these regular HTML controls ex: <input type="radio" checked="checked"/> -> I understand these do not have viewstate Then there are HTML controls with runat="server" <input type="radio" checked="checked" runat="server"/> -> Does the viewstate get maintained between postbacks? Then there are ASP.NET controls <asp:TextBox id="txtMyText" runat="server"/> -> I