Kontrola DataList jest, podobnie jak kontrola Repeater, używany do wyświetlania powtarzającego listę elementów, które są związane z kontrolą. Jednak kontrola DataList dodaje tabelę wokół elementów danych domyślnie.
Związania DataSet do DataList Kontroli
Kontrola DataList jest, podobnie jak kontrola Repeater, używany do wyświetlania powtarzającego listę elementów, które są związane z kontrolą. Jednak kontrola DataList dodaje tabelę wokół elementów danych domyślnie. Kontrola DataList może być związany z tabeli bazy danych, pliku XML lub innej listy elementów. Tutaj pokażemy jak powiązać plik XML do kontroli DataList.
Użyjemy następujący plik XML w naszych przykładach ("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>
Spójrz na pliku XML: cdcatalog.xml
Po pierwsze, import "System.Data" nazw. Musimy ten obszar nazw do pracy z obiektów DataSet. Zawierać następującą dyrektywę na górze strony .aspx:
<%@ Import Namespace="System.Data" %>
Następnie należy utworzyć zestaw danych do pliku XML i załadować plik XML do obiektu DataSet, gdy strona jest najpierw załadować:
<script runat="server">
sub Page_Load
if Not Page.IsPostBack then
dim mycdcatalog=New DataSet
mycdcatalog.ReadXml(MapPath("cdcatalog.xml"))
end if
end sub
Następnie tworzymy DataList w stronę aspx. Zawartość <HeaderTemplate> elementu są renderowane pierwszy i raz na wyjściu, a następnie zawartość <ItemTemplate> elementu są powtarzane dla każdego "record" w danych, a wreszcie, gdy zawartość <FooterTemplate> pierwiastka wydanego raz na wyjściu:
<html>
<body>
<form runat="server">
<asp:DataList id="cdcatalog" runat="server">
<HeaderTemplate>
...
</HeaderTemplate>
<ItemTemplate>
...
</ItemTemplate>
<FooterTemplate>
...
</FooterTemplate>
</asp:DataList>
</form>
</body>
</html>
Następnie dodajemy skrypt, który tworzy zestaw danych i wiąże mycdcatalog DataSet do kontroli DataList. Mamy również wypełnić kontrolkę DataList z <HeaderTemplate> , który zawiera nagłówek tabeli, <ItemTemplate> , który zawiera elementy danych do wyświetlenia, a <FooterTemplate> , który zawiera tekst. Należy pamiętać, że gridlines atrybutem DataList jest ustawiony na "both" , aby wyświetlić granice tabeli:
Przykład
<%@ 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>
Pokaż przykład » Używanie stylów
Można również dodać style do kontroli DataList aby wyjście bardziej wyszukane:
Przykład
<%@ 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>
Pokaż przykład » Korzystanie z <AlternatingItemTemplate>
Możesz dodać <AlternatingItemTemplate> elementu po <ItemTemplate> elementu opisać wygląd naprzemiennie rzędy wyjściu. Można projektować dane w <AlternatingItemTemplate> sekcji podlegają kontroli DataList:
Przykład
<%@ 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>
© Hege Refsnes
</FooterTemplate>
</asp:DataList>
</form>
</body>
</html>
Pokaż przykład »