첨부 실행 코드는 나눔고딕코딩 폰트를 사용합니다.
728x90
반응형
728x170

TestProject.zip
다운로드

▶ MainPage.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MainPage.aspx.cs" Inherits="TestProject.MainPage" %>
<!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>CustomValidator 클래스 : 약관 동의하기</title>
        <script>
            function ValidationConfirmCheckBox(sender, e)
            {
                if(document.getElementById("<%= confirmCheckBox.ClientID %>").checked == true)
                {
                    e.IsValid = true;
                }
                else
                {
                    e.IsValid = false;
                }
            }
        </script>
    </head>
    <body>
        <form id="form" runat="server">
            <div>
                <label for="optGender">
                    <asp:Literal ID="Literal1" runat="server">이용 약관</asp:Literal>:
                </label>
                <div>
                    <p>회원 이용 약관에 동의하셔야 회원가입을 하실 수 있습니다.</p>
                    <asp:TextBox ID="agreementTextBox" runat="server"
                        Style="font-size:9pt;"
                        Width="100%"
                        Height="80px"
                        TextMode="MultiLine">
                    </asp:TextBox>
                    <div>
                        <label>
                            <asp:CheckBox ID="confirmCheckBox" runat="server"
                                Checked="false" />
                            <asp:Literal ID="agreeLicenseLiteral" runat="server">
                                위 약관에 동의합니다.(Accept the license)
                            </asp:Literal>
                        </label>
                    </div>
                    <asp:CustomValidator ID="confirmCustomValidator" runat="server"
                        ErrorMessage="약관에 동의하셔야 합니다."
                        ClientValidationFunction="ValidationConfirmCheckBox">
                    </asp:CustomValidator>
                    <asp:ValidationSummary ID="validationSummary" runat="server" 
                        ShowSummary="false"
                        ShowMessageBox="true" />
                    <div>
                        <asp:Button ID="submitButton" runat="server"
                            Text="가입하기" />
                    </div>
                </div>
            </div>
        </form>
    </body>
</html>

 

728x90

 

▶ MainPage.aspx.cs

using System;
using System.Web.UI;

namespace TestProject
{
    /// <summary>
    /// 메인 페이지
    /// </summary>
    public partial class MainPage : Page
    {
        //////////////////////////////////////////////////////////////////////////////////////////////////// Method
        ////////////////////////////////////////////////////////////////////////////////////////// Protected

        #region 페이지 로드시 처리하기 - Page_Load(sender, e)

        /// <summary>
        /// 페이지 로드시 처리하기
        /// </summary>
        /// <param name="sender">이벤트 발생자</param>
        /// <param name="e">이벤트 인자</param>
        protected void Page_Load(object sender, EventArgs e)
        {
        }

        #endregion
    }
}
728x90
반응형
그리드형(광고전용)
Posted by icodebroker

댓글을 달아 주세요