2013年9月25日 星期三

廣播輪播器 ASP.NET +XML


前台
<body>
    <form id="form1" runat="server">
    <div>
        <asp:AdRotator ID="AdRotator1" runat="server" DataSourceID="XmlDataSource1" />
        <asp:XmlDataSource ID="XmlDataSource1" runat="server" DataFile="~/test.xml">
        </asp:XmlDataSource>
        &nbsp;&nbsp;
   
    </div>
    </form>
</body>
'test.xml:
<?xml version="1.0" encoding="utf-8" ?>
<Advertisements>
  <Ad>
    <ImageUrl>images/banner1.gif</ImageUrl>
  </Ad>
  <Ad>
    <ImageUrl>images/banner2.gif</ImageUrl>
  </Ad>
  <Ad>
    <ImageUrl>images/banner3.gif</ImageUrl>
  </Ad>
</Advertisements>

沒有留言:

張貼留言