|
|
[我的ASP.net学习历程]DataList(DataBind)(1) |
|
|
作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站 |
<%@ Page Language="C#" AutoEventWireup="True" %> <Script language="C#" runat="server"> void Page_Load(Object Sender,EventArgs e){ ArrayList array=new ArrayList(); array.Add("1234"); array.Add("5678"); array.Add("9101"); DataList.DataSource=array; DataList.DataBind(); } </Script> <asp:datalist ID="DataList" runat="server"> <!--页头数据梆定--> <headertemplate> <div> Some of the latest wrox Press Books </div> </headertemplate> <!--页内容数据梆定--> <itemtemplate> <asp:label ID="Label_1" Text="<%#Container.DataItem%>" runat="server"></asp:label> </itemtemplate> <!--页尾数据梆定--> <footertemplate> <table> <tr> <td bgcolor="#0099CC">xfzf</td> </tr> </table> </footertemplate> </asp:datalist>
|
|
相关文章:相关软件: |
|