■ MultiView 클래스를 사용하는 방법을 보여준다.
▶ MainPage.aspx
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 30 |
<%@ 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>MultiView 클래스 사용하기</title> </head> <body> <form id="form" runat="server"> <div> <asp:MultiView ID="multiView" runat="server"> <asp:View ID="view1" runat="server"> 첫번째 뷰<br /><br /> <asp:Button ID="lastViewButton" runat="server" Text="마지막 뷰" OnClick="lastViewButton_Click" /> </asp:View> <asp:View ID="view2" runat="server"> 마지막 뷰<br /><br /> <asp:Button ID="firstViewButton" runat="server" Text="첫번째 뷰" OnClick="firstViewButton_Click" /> </asp:View> </asp:MultiView> </div> </form> </body> </html> |
▶ MainPage.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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
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) { if(!IsPostBack) { this.multiView.ActiveViewIndex = 0; } } #endregion #region 마지막 뷰 버튼 클릭시 처리하기 - lastViewButton_Click(sender, e) /// <summary> /// 마지막 뷰 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> protected void lastViewButton_Click(object sender, EventArgs e) { this.multiView.ActiveViewIndex = 1; } #endregion #region 첫번째 뷰 버튼 클릭시 처리하기 - firstViewButton_Click(sender, e) /// <summary> /// 첫번째 뷰 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> protected void firstViewButton_Click(object sender, EventArgs e) { this.multiView.ActiveViewIndex = 0; } #endregion } } |