4. FrmRadioButton.aspx.cs 파일을 열고 다음과 같이 코드를 작성한다. 페이지 로드 시 프로그래밍적으로 텍스트를 설정하는 방법을 표현한 코드다. 확인 버튼을 클릭하면 선택된 라디오 버튼의 텍스트에 해당하는 문자열을 묶어서 출력한다. 라디오 버튼에 직접 Text 속성을 사용해 텍스트를 미리 지정할 수도 있다.
▼ FrmRadioButton.aspx.cs
using System; namespace DevStandardControl { public partial class FrmRadioButton : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { rdoMan.Text = “남자”; optWomen.Text = “여자”; } protected void btnOK_Click(object sender, EventArgs e) { string strMsg = “당신은 “; if (this.rdoMan.Checked) { strMsg += “남자입니다.<br />“; } else { strMsg += “여자입니다.<br />“; } lblDisplay.Text = strMsg; } } }