■ MasterPage 클래스에서 마스터 페이지를 사용하는 방법을 보여준다.
▶ MainMasterPage.Master
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="MainMasterPage.master.cs" Inherits="TestProject.MainMasterPage" %> <!DOCTYPE html> <html> <head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>MasterPage 클래스 : 마스터 페이지 사용하기</title> </head> <body> <form id="form" runat="server"> <div> <asp:HyperLink runat="server" Text="페이지 1" NavigateUrl="~/ContentPage1.aspx" /> <asp:HyperLink runat="server" Text="페이지 2" NavigateUrl="~/ContentPage2.aspx" /> <hr /> <asp:ContentPlaceHolder ID="contentContentPlaceHolder" runat="server" /> </div> </form> </body> </html> |
▶ MainMasterPage.Master.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
using System; using System.Web.UI; namespace TestProject { /// <summary> /// 메인 마스터 페이지 /// </summary> public partial class MainMasterPage : MasterPage { //////////////////////////////////////////////////////////////////////////////////////////////////// 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 } } |
▶ ContentPage1.aspx
1 2 3 4 5 6 7 8 9 |
<%@ Page Title="" Language="C#" AutoEventWireup="true" MasterPageFile="~/MainMasterPage.Master" CodeBehind="ContentPage1.aspx.cs" Inherits="TestProject.ContentPage1" %> <asp:Content ID="content" runat="server" ContentPlaceHolderID="contentContentPlaceHolder"> <h1>페이지 1</h1> </asp:Content> |
▶ ContentPage1.aspx.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
using System; using System.Web.UI; namespace TestProject { /// <summary> /// 내용 페이지 1 /// </summary> public partial class ContentPage1 : 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 } } |
▶ ContentPage2.aspx
1 2 3 4 5 6 7 8 9 |
<%@ Page Title="" Language="C#" AutoEventWireup="true" MasterPageFile="~/MainMasterPage.Master" CodeBehind="ContentPage2.aspx.cs" Inherits="TestProject.ContentPage2" %> <asp:Content ID="content" runat="server" ContentPlaceHolderID="contentContentPlaceHolder"> <h1>페이지 2</h1> </asp:Content> |
▶ ContentPage2.aspx.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
using System; using System.Web.UI; namespace TestProject { /// <summary> /// 내용 페이지 2 /// </summary> public partial class ContentPage2 : 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 } } |