Sunday, May 7, 2017

Radio Button ASP.NET

</head>
<body>
    <form id="form1" runat="server">
    <div>
    Select Gender:-<br/>
        <asp:RadioButton ID="RadioButton1"  Text="Male" runat="server" /><asp:RadioButton
            ID="RadioButton2" Text="Female" runat="server" /><br/>
        <asp:Button ID="Button1" runat="server" Text="Select" onclick="Button1_Click" /><br/>
        <asp:Label ID="Label1" runat="server" Text=""></asp:Label>
    </div>
    </form>
</body>

No comments:

Post a Comment