App下载

demo_dbconn_datalist 在线工具

demo_dbconn_datalist 在线工具

<html>
<body>

<form runat="server">
<asp:DataList
id="customers"
runat="server"
cellpadding="2"
cellspacing="2"
borderstyle="inset"
backcolor="#e8e8e8"
width="100%"
headerstyle-font-name="Verdana"
headerstyle-font-size="12pt"
headerstyle-horizontalalign="center"
headerstyle-font-bold="True"
itemstyle-backcolor="#778899"
itemstyle-forecolor="#ffffff"
footerstyle-font-size="9pt"
footerstyle-font-italic="True">

<HeaderTemplate>
Customers Table
</HeaderTemplate>

<ItemTemplate>
<FONT COLOR=#ff0000><%#Container.DataItem("companyname")%></FONT>&nbsp; in
<FONT COLOR=#ff0000><%#Container.DataItem("address")%></FONT>, <FONT COLOR=#ff0000><%#Container.DataItem("city")%></FONT>
</ItemTemplate>

<FooterTemplate>
Source: Northwind Database
</FooterTemplate>

</asp:DataList>
</form>

</body>
</html>
运行结果