첨부 실행 코드는 나눔고딕코딩 폰트를 사용합니다.
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>TextBox 클래스 : TextMode 속성 사용하기</title>
    </head>
    <body>
        <form id="form1" runat="server">
            <div>
                <h2>싱글 라인</h2>
                이름 :
                <asp:TextBox ID="nameTextBox" runat="server"
                    TextMode="SingleLine" />
                <h2>멀티 라인</h2>
                소개 :
                <asp:TextBox ID="introductionTextBox" runat="server"
                    TextMode="MultiLine" />
                <br />
                <h2>패스워드</h2>
                암호 :
                <asp:TextBox ID="passwordTextBox" runat="server"
                    TextMode="Password" />
                <hr />
                <asp:Button ID="okButton" runat="server"
                    Text="확인"
                    OnClick="okButton_Click" />
            </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
        #region 확인 버튼 클릭시 처리하기 - okButton_Click(sender, e)

        /// <summary>
        /// 확인 버튼 클릭시 처리하기
        /// </summary>
        /// <param name="sender">이벤트 발생자</param>
        /// <param name="e">이벤트 인자</param>
        protected void okButton_Click(object sender, EventArgs e)
        {
            string name = this.nameTextBox.Text;

            string introduction = this.introductionTextBox.Text;

            string password = this.passwordTextBox.Text;

            Response.Write(name + "<br />" + introduction + "<br />" + password + "<br />");
        }

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

댓글을 달아 주세요