黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

ASP.NET DataList 控件

asp.net web forms - datalist 控件

datalist 控件,類似于 repeater 控件,用于顯示綁定在該控件上的項(xiàng)目的重復(fù)列表。不過,datalist 控件會(huì)默認(rèn)地在數(shù)據(jù)項(xiàng)目上添加表格。

綁定 dataset 到 datalist 控件

datalist 控件,類似于 repeater 控件,用于顯示綁定在該控件上的項(xiàng)目的重復(fù)列表。不過,datalist 控件會(huì)默認(rèn)地在數(shù)據(jù)項(xiàng)目上添加表格。datalist 控件可被綁定到數(shù)據(jù)庫(kù)表、xml 文件或者其他項(xiàng)目列表。在這里,我們將演示如何綁定 xml 文件到 datalist 控件。

在我們的實(shí)例中,我們將使用下面的 xml 文件("cdcatalog.xml"):

<?xml version="1.0" encoding="iso-8859-1"?>

<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>

查看這個(gè) xml 文件:cdcatalog.xml

首先,導(dǎo)入 "system.data" 命名空間。我們需要該命名空間與 dataset 對(duì)象一起工作。 把下面這條指令包含在 .aspx 頁(yè)面的頂部:

<%@ import namespace="system.data" %>

接著,為 xml 文件創(chuàng)建一個(gè) dataset,并在頁(yè)面第一次加載時(shí)把這個(gè) xml 文件載入 dataset:

<script runat="server">
sub page_load
if not page.ispostback then
dim mycdcatalog=new dataset
mycdcatalog.readxml(mappath("cdcatalog.xml"))
end if
end sub

然后我們?cè)?.aspx 頁(yè)面中創(chuàng)建一個(gè) datalist 控件。<headertemplate> 元素中的內(nèi)容被首先呈現(xiàn),并且在輸出中僅出現(xiàn)一次,而 <itemtemplate> 元素中的內(nèi)容會(huì)對(duì)應(yīng) dataset 中的每條 "record" 重復(fù)出現(xiàn),最后,<footertemplate> 元素中的內(nèi)容在輸出中僅出現(xiàn)一次:

<html>
<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ù)項(xiàng)的 <itemtemplate> 和包含文本的 <footertemplate> 來填充 datalist 控件。請(qǐng)注意,可設(shè)置 datalist 的 gridlines 屬性為 "both" 來顯示表格邊框:

實(shí)例

<%@ import namespace="system.data" %>

<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 控件添加樣式,讓輸出更加花哨:

實(shí)例

<%@ import namespace="system.data" %>

<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)部對(duì) <alternatingitemtemplate> 區(qū)域的數(shù)據(jù)添加樣式:

實(shí)例

<%@ import namespace="system.data" %>

<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>
&copy; hege refsnes
</footertemplate>

</asp:datalist>
</form>

</body>
</html>


相關(guān)文章