当前位置:编程学习 > C#/ASP.NET >>

ASP.NET -Repeater控件

ASP.NET -R epeater控件

Repeater控件是用来显示一个重复的项目清单是必然的控制。

一个DataSet绑定到中继控制
Repeater控件是用来显示一个重复的项目清单是必然的控制。 Repeater控件可绑定到数据库表,一个XML文件,或其他的物品清单。在这里,我们将展示如何结合XML文件的Repeater控制。

我们将使用下面的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页:

“ % @导入命名= ” System.Data “ % ”

下一步,创建一个DataSet的XML文件,并加载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
补充:asp.net教程,基础入门
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,