<%@ Import Namespace="System.Data"%> <%@ Import Namespace="System.Data.OleDb"%> <%@ 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 ListView ***// myListView.DataSource = ds; myListView.DataBind(); } </script> <html> <head> <title>ThaiCreate.Com ASP.NET - ListView</title> </head> <body> <form id="form1" runat="server"> <asp:ListView ID="myListView" runat="server" DataKeyNames="CustomerID"> <LayoutTemplate> <table> <tr> <td> <table runat="server" border="1"> <tr> <th runat="server"> CustomerID</th> <th runat="server"> Name</th> <th runat="server"> Email</th> <th runat="server"> CountryCode</th> <th runat="server"> Budget</th> <th runat="server"> Used</th> </tr> <tr ID="itemPlaceholder" runat="server"> </tr> </table> </td> </tr> </table> </LayoutTemplate> <ItemTemplate> <tr> <td> <asp:Label ID="lblCustomerID" runat="server" Text='<%# Eval("CustomerID") %>' /> </td> <td> <asp:Label ID="lblName" runat="server" Text='<%# Eval("Name") %>' /> </td> <td> <asp:Label ID="lblEmail" runat="server" Text='<%# Eval("Email") %>' /> </td> <td> <asp:Label ID="lblCountryCode" runat="server" Text='<%# Eval("CountryCode") %>' /> </td> <td> <asp:Label ID="lblBudget" runat="server" Text='<%# Eval("Budget") %>' /> </td> <td> <asp:Label ID="lblUsed" runat="server" Text='<%# Eval("Used") %>' /> </td> </tr> </ItemTemplate> </asp:ListView> </form> </body> </html>
<?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>
ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท