What is the correct syntax to create ASP.NET RadioButton control?

111. What is the correct syntax to create ASP.NET RadioButton control?

  1. <asp:RB ID="RB1" runat="server" Text="Male" GroupName="gender"/>
  2. <asp:RD ID="RB1" runat="server" Text="Male" GroupName="gender"/>
  3. <asp:RadioButton ID="RB1" runat="server" Text="Male" GroupName="gender"/>
  4. None of the above

Answer: C) <asp:RadioButton ID="RB1" runat="server" Text="Male" GroupName="gender"/>

Explanation:

The 3rd syntax is correct to create an ASP.NET RadioButton control.

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.