■ XmlDataSource 클래스를 사용하는 방법을 보여준다.
▶ MainPage.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<?xml version="1.0" encoding="utf-8" ?> <Interests> <Interest> <title>Windows Server</title> <description>Best Operation System</description> </Interest> <Interest> <title>SQL Server</title> <description>Nice DataBase Management System</description> </Interest> <Interest> <title>C#</title> <description>Cool Programming Language</description> </Interest> <Interest> <title>ASP.NET</title> <description>Perfect Web Application Framework</description> </Interest> </Interests> |
▶ 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 |
<%@ 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>XmlDataSource 클래스 사용하기</title> </head> <body> <form id="form" runat="server"> <div> <asp:DataList ID="dataList" runat="server" DataSourceID="xmlDataSource"> <ItemTemplate> <em><%# XPath("title") %></em>: <%# XPath("description") %> </ItemTemplate> </asp:DataList> <asp:XmlDataSource ID="xmlDataSource" runat="server" DataFile="~/MainPage.xml"> </asp:XmlDataSource> </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 |
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 } } |