(C#) ASP.NET DataList Control - XML |
(C#) ASP.NET DataList Control - XML ถ้าหากต้องการใช้ DataList ในการอ่านข้อมูลจาก XML ก็สามารถทำได้เช่นเดียวกันครับ โดยใช้ชุดคำสั่งของ readxml เข้ามาจัดการข้อมูล xml
Language Code : VB.NET || C#
Framework : 1,2,3,4
DataListReadXml.aspx
<%@ Import Namespace="System.Data"%>
<%@ Page Language="C#" Debug="true" %>
<script runat="server">
void Page_Load(object sender,EventArgs e)
{
DataSet ds = new DataSet();
ds.ReadXml(MapPath("customer.xml"));
//*** BindData to DataList ***//
myDataList.DataSource = ds;
myDataList.DataBind();
}
</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - DataList</title>
</head>
<body>
<form id="form1" runat="server">
<asp:DataList id="myDataList" runat="server">
<HeaderTemplate>
<b>My Category</b>
</HeaderTemplate>
<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem, "CustomerID") %> - <%# DataBinder.Eval(Container.DataItem, "Name") %>
- <%# DataBinder.Eval(Container.DataItem, "Email") %> - <%# DataBinder.Eval(Container.DataItem, "CountryCode") %>
- <%# DataBinder.Eval(Container.DataItem, "Budget") %> - <%# DataBinder.Eval(Container.DataItem, "Used") %>
</ItemTemplate>
<SeparatorTemplate>
<hr />
</SeparatorTemplate>
</asp:DataList>
</form>
</body>
</html>
customer.xml
<?xml version="1.0" encoding="UTF-8"?>
<mydatabase>
<customer>
<CustomerID>C001</CustomerID>
<Name>Win Weerachai</Name>
<Email>[email protected]</Email>
<CountryCode>TH</CountryCode>
<Budget>1000000</Budget>
<Used>600000</Used>
</customer>
<customer>
<CustomerID>C002</CustomerID>
<Name>John Smith</Name>
<Email>[email protected]</Email>
<CountryCode>EN</CountryCode>
<Budget>2000000</Budget>
<Used>800000</Used>
</customer>
<customer>
<CustomerID>C003</CustomerID>
<Name>Jame Born</Name>
<Email>[email protected]</Email>
<CountryCode>US</CountryCode>
<Budget>3000000</Budget>
<Used>600000</Used>
</customer>
<customer>
<CustomerID>C004</CustomerID>
<Name>Chalee Angel</Name>
<Email>[email protected]</Email>
<CountryCode>US</CountryCode>
<Budget>4000000</Budget>
<Used>100000</Used>
</customer>
</mydatabase>
Screenshot
|
ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท
|
|
|
By : |
ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ) |
|
Score Rating : |
|
|
|
Create/Update Date : |
2008-11-12 06:29:23 /
2017-03-28 21:28:00 |
|
Download : |
|
|
Sponsored Links / Related |
|
|
|
|
|
|
|