精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

ASP.NET DataList 控件

asp.net web forms - datalist 控件

datalist 控件,類似于 repeater 控件,用于顯示綁定在該控件上的項目的重復列表。不過,datalist 控件會默認地在數據項目上添加表格。

綁定 dataset 到 datalist 控件

datalist 控件,類似于 repeater 控件,用于顯示綁定在該控件上的項目的重復列表。不過,datalist 控件會默認地在數據項目上添加表格。datalist 控件可被綁定到數據庫表、xml 文件或者其他項目列表。在這里,我們將演示如何綁定 xml 文件到 datalist 控件。

在我們的實例中,我們將使用下面的 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>

查看這個 xml 文件:cdcatalog.xml

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

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

接著,為 xml 文件創建一個 dataset,并在頁面第一次加載時把這個 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

然后我們在 .aspx 頁面中創建一個 datalist 控件。<headertemplate> 元素中的內容被首先呈現,并且在輸出中僅出現一次,而 <itemtemplate> 元素中的內容會對應 dataset 中的每條 "record" 重復出現,最后,<footertemplate> 元素中的內容在輸出中僅出現一次:

<html>
<body>

<form runat="server">
<asp:datalist id="cdcatalog" runat="server">

<headertemplate>
...
</headertemplate>

<itemtemplate>
...
</itemtemplate>

<footertemplate>
...
</footertemplate>

</asp:datalist>
</form>

</body>
</html>

然后我們添加創建 dataset 的腳本,并且綁定 mycdcatalog dataset 到 datalist 控件。然后 使用包含表頭的 <headertemplate>、包含要顯示的數據項的 <itemtemplate> 和包含文本的 <footertemplate> 來填充 datalist 控件。請注意,可設置 datalist 的 gridlines 屬性為 "both" 來顯示表格邊框:

實例

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

實例

<%@ 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 控件內部對 <alternatingitemtemplate> 區域的數據添加樣式:

實例

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


相關文章