asp.net web forms - datalist 控件
datalist 控件,類似于 repeater 控件,用于顯示綁定在該控件上的項目的重復(fù)列表。不過,datalist 控件會默認(rèn)地在數(shù)據(jù)項目上添加表格。
綁定 dataset 到 datalist 控件
datalist 控件,類似于 repeater 控件,用于顯示綁定在該控件上的項目的重復(fù)列表。不過,datalist 控件會默認(rèn)地在數(shù)據(jù)項目上添加表格。datalist 控件可被綁定到數(shù)據(jù)庫表、xml 文件或者其他項目列表。在這里,我們將演示如何綁定 xml 文件到 datalist 控件。
在我們的實例中,我們將使用下面的 xml 文件("cdcatalog.xml"):
<catalog>
<cd>
<title>empire burlesque</title>
<artist>bob dylan</artist>
<country>usa</country>
<company>columbia</company>
<price>10.90</price>
<year>1985</year>
</cd>
<cd>
<title>hide your heart</title>
<artist>bonnie tyler</artist>
<country>uk</country>
<company>cbs records</company>
<price>9.90</price>
<year>1988</year>
</cd>
<cd>
<title>greatest hits</title>
<artist>dolly parton</artist>
<country>usa</country>
<company>rca</company>
<price>9.90</price>
<year>1982</year>
</cd>
<cd>
<title>still got the blues</title>
<artist>gary moore</artist>
<country>uk</country>
<company>virgin records</company>
<price>10.20</price>
<year>1990</year>
</cd>
<cd>
<title>eros</title>
<artist>eros ramazzotti</artist>
<country>eu</country>
<company>bmg</company>
<price>9.90</price>
<year>1997</year>
</cd>
</catalog>
查看這個 xml 文件:cdcatalog.xml
首先,導(dǎo)入 "system.data" 命名空間。我們需要該命名空間與 dataset 對象一起工作。 把下面這條指令包含在 .aspx 頁面的頂部:
接著,為 xml 文件創(chuàng)建一個 dataset,并在頁面第一次加載時把這個 xml 文件載入 dataset:
sub page_load
if not page.ispostback then
dim mycdcatalog=new dataset
mycdcatalog.readxml(mappath("cdcatalog.xml"))
end if
end sub
然后我們在 .aspx 頁面中創(chuàng)建一個 datalist 控件。<headertemplate> 元素中的內(nèi)容被首先呈現(xiàn),并且在輸出中僅出現(xiàn)一次,而 <itemtemplate> 元素中的內(nèi)容會對應(yīng) dataset 中的每條 "record" 重復(fù)出現(xiàn),最后,<footertemplate> 元素中的內(nèi)容在輸出中僅出現(xiàn)一次:
<body>
<form runat="server">
<asp:datalist id="cdcatalog" runat="server">
<headertemplate>
...
</headertemplate>
<itemtemplate>
...
</itemtemplate>
<footertemplate>
...
</footertemplate>
</asp:datalist>
</form>
</body>
</html>
然后我們添加創(chuàng)建 dataset 的腳本,并且綁定 mycdcatalog dataset 到 datalist 控件。然后 使用包含表頭的 <headertemplate>、包含要顯示的數(shù)據(jù)項的 <itemtemplate> 和包含文本的 <footertemplate> 來填充 datalist 控件。請注意,可設(shè)置 datalist 的 gridlines 屬性為 "both" 來顯示表格邊框:
實例
<script runat="server">
sub page_load
if not page.ispostback then
dim mycdcatalog=new dataset
mycdcatalog.readxml(mappath("cdcatalog.xml"))
cdcatalog.datasource=mycdcatalog
cdcatalog.databind()
end if
end sub
</script>
<html>
<body>
<form runat="server">
<asp:datalist id="cdcatalog"
gridlines="both" runat="server">
<headertemplate>
my cd catalog
</headertemplate>
<itemtemplate>
"<%#container.dataitem("title")%>" of
<%#container.dataitem("artist")%> -
$<%#container.dataitem("price")%>
</itemtemplate>
<footertemplate>
copyright hege refsnes
</footertemplate>
</asp:datalist>
</form>
</body>
</html>
使用樣式
您也可以向 datalist 控件添加樣式,讓輸出更加花哨:
實例
<script runat="server">
sub page_load
if not page.ispostback then
dim mycdcatalog=new dataset
mycdcatalog.readxml(mappath("cdcatalog.xml"))
cdcatalog.datasource=mycdcatalog
cdcatalog.databind()
end if
end sub
</script>
<html>
<body>
<form runat="server">
<asp:datalist id="cdcatalog"
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>
my cd catalog
</headertemplate>
<itemtemplate>
"<%#container.dataitem("title")%>" of
<%#container.dataitem("artist")%> -
$<%#container.dataitem("price")%>
</itemtemplate>
<footertemplate>
copyright hege refsnes
</footertemplate>
</asp:datalist>
</form>
</body>
</html>
使用 <alternatingitemtemplate>
您可以在 <itemtemplate> 元素后添加 <alternatingitemtemplate> 元素,用來描述輸出中交替行的外觀。您可以在 datalist 控件內(nèi)部對 <alternatingitemtemplate> 區(qū)域的數(shù)據(jù)添加樣式:
實例
<script runat="server">
sub page_load
if not page.ispostback then
dim mycdcatalog=new dataset
mycdcatalog.readxml(mappath("cdcatalog.xml"))
cdcatalog.datasource=mycdcatalog
cdcatalog.databind()
end if
end sub
</script>
<html>
<body>
<form runat="server">
<asp:datalist id="cdcatalog"
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"
alternatingitemstyle-backcolor="#e8e8e8"
alternatingitemstyle-forecolor="#000000"
footerstyle-font-size="9pt"
footerstyle-font-italic="true">
<headertemplate>
my cd catalog
</headertemplate>
<itemtemplate>
"<%#container.dataitem("title")%>" of
<%#container.dataitem("artist")%> -
$<%#container.dataitem("price")%>
</itemtemplate>
<alternatingitemtemplate>
"<%#container.dataitem("title")%>" of
<%#container.dataitem("artist")%> -
$<%#container.dataitem("price")%>
</alternatingitemtemplate>
<footertemplate>
© hege refsnes
</footertemplate>
</asp:datalist>
</form>
</body>
</html>