topical media & game development

talk show tell print

professional-xml-15-Listing-15-20.txt / txt



  <%@ Page Language="C#"%>
  
  <html xmlns="http://www.w3.org/1999/xhtml" >
  <head runat="server">
      <title>XmlDataSource</title>
  </head>
  <body>
      <form id="form1" runat="server">
          <asp:DataList ID="DataList1" Runat="server" DataSourceID="XmlDataSource1">
              <ItemTemplate>
                  <p><b><%# XPath("@name") %></b><br />
                  <i><%# XPath("Painting/Title") %></i><br />
                  <%# XPath("Painting/Year") %></p>
              </ItemTemplate>
          </asp:DataList>
  
          <asp:XmlDataSource ID="XmlDataSource1" Runat="server" 
           DataFile="~/Painters.xml" XPath="Artists/Painter">
          </asp:XmlDataSource>
      </form>
  </body>
  </html>
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.