3. FrmRadioButton.aspx 페이지에 다음과 같이 입력한다. 한 웹 페이지에서 라디오버튼을 그룹으로 묵어서 관리하려면 GroupName 속성 값을 같은 값으로 주어야 한다.
▼ FrmRadioButton.aspx
<%@ Page Language=“C#” AutoEventWireup=“true” CodeBehind=“FrmRadioButton.aspx.cs” Inherits=“DevStandardControl.FrmRadioButton” %> <!DOCTYPE html> <html xmlns=“http://www.w3.org/1999/xhtml"> <head runat=“server”> <meta http-equiv=“Content-Type” content=“text/html; charset=utf-8” /> <title>라디오버튼 컨트롤</title> </head> <body> <form id=“form1” runat=“server”> <div> <asp:RadioButton ID=“rdoMan” runat=“server” GroupName=“Gender” /> <asp:RadioButton ID=“optWomen” runat=“server” GroupName=“Gender” /> <asp:Button ID=“btnOK” runat=“server” Text=“확인” OnClick=“btnOK_Click” /> <hr /> <asp:Label ID=“lblDisplay” runat=“server”></asp:Label> </div> </form> </body> </html>