최신 웹 개발 튜토리얼
 

ASP.NET웹 양식 - Repeater 컨트롤


Repeater 컨트롤 컨트롤에 바인딩 된 아이템 목록을 반복 표시하는 데 사용된다.


리피터 컨트롤에 데이터 집합을 바인딩

Repeater 컨트롤 컨트롤에 바인딩 된 아이템 목록을 반복 표시하는 데 사용된다. Repeater 컨트롤은 데이터베이스 테이블, XML 파일, 또는 항목의 다른 목록에 결합 할 수있다. 여기서 우리는 Repeater 컨트롤에 XML 파일을 바인딩하는 방법을 보여줍니다.

우리는 우리의 예에서 다음 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" 네임 스페이스를. 우리는 데이터 집합 객체로 작업이 공간이 필요합니다. 에서 .aspx 페이지의 상단에 다음 지시문을 포함합니다 :

<%@ Import Namespace="System.Data" %>

다음으로, XML 파일의 데이터 집합을 생성하고 페이지가 처음로드 될 때 DataSet으로 XML 파일을로드 :

<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 페이지에 Repeater 컨트롤을 만듭니다. 의 내용 <HeaderTemplate> 엘리먼트는 첫번째 렌더링 번만 출력 내의 다음의 내용 <ItemTemplate> 엘리먼트 각각에 대해 반복되는 "record" 데이터 셋, 그리고 마지막으로 상기의 내용 <FooterTemplate> 요소는 출력에서 한번 렌더링 :

<html>
<body>

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

<HeaderTemplate>
...
</HeaderTemplate>

<ItemTemplate>
...
</ItemTemplate>

<FooterTemplate>
...
</FooterTemplate>

</asp:Repeater>
</form>

</body>
</html>

그런 다음 우리는 데이터 집합을 생성하고 Repeater 컨트롤에 mycdcatalog 데이터 집합을 결합하는 스크립트를 추가합니다. 우리는 또한 HTML 태그 Repeater 컨트롤을 작성하여 <% 번호의 컨테이너와 <ItemTemplate을> 섹션에서 셀에 데이터 항목을 바인딩합니다. DataItem("fieldname") %> 방법

<%@ 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:Repeater id="cdcatalog" runat="server">

<HeaderTemplate>
<table border="1" width="100%">
<tr>
<th>Title</th>
<th>Artist</th>
<th>Country</th>
<th>Company</th>
<th>Price</th>
<th>Year</th>
</tr>
</HeaderTemplate>

<ItemTemplate>
<tr>
<td><%#Container.DataItem("title")%></td>
<td><%#Container.DataItem("artist")%></td>
<td><%#Container.DataItem("country")%></td>
<td><%#Container.DataItem("company")%></td>
<td><%#Container.DataItem("price")%></td>
<td><%#Container.DataItem("year")%></td>
</tr>
</ItemTemplate>

<FooterTemplate>
</table>
</FooterTemplate>

</asp:Repeater>
</form>

</body>
</html>
»예보기

은 Using <AlternatingItemTemplate>

당신은 추가 할 수 있습니다 <AlternatingItemTemplate> 애프터 요소를 <ItemTemplate> 출력 행을 번갈아의 모양을 설명하는 요소입니다. 다음의 예에서, 테이블의 각각의 행을 밝은 회색으로 표시 될 것이다 :

<%@ 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:Repeater id="cdcatalog" runat="server">

<HeaderTemplate>
<table border="1" width="100%">
<tr>
<th>Title</th>
<th>Artist</th>
<th>Country</th>
<th>Company</th>
<th>Price</th>
<th>Year</th>
</tr>
</HeaderTemplate>

<ItemTemplate>
<tr>
<td><%#Container.DataItem("title")%></td>
<td><%#Container.DataItem("artist")%></td>
<td><%#Container.DataItem("country")%></td>
<td><%#Container.DataItem("company")%></td>
<td><%#Container.DataItem("price")%></td>
<td><%#Container.DataItem("year")%></td>
</tr>
</ItemTemplate>

<AlternatingItemTemplate>
<tr bgcolor="#e8e8e8">
<td><%#Container.DataItem("title")%></td>
<td><%#Container.DataItem("artist")%></td>
<td><%#Container.DataItem("country")%></td>
<td><%#Container.DataItem("company")%></td>
<td><%#Container.DataItem("price")%></td>
<td><%#Container.DataItem("year")%></td>
</tr>
</AlternatingItemTemplate>

<FooterTemplate>
</table>
</FooterTemplate>

</asp:Repeater>
</form>

</body>
</html>
»예보기

은 Using <SeparatorTemplate>

<SeparatorTemplate> 요소는 각 레코드 사이의 분리를 설명하는 데 사용될 수있다. 다음 예는 각 테이블의 행 사이의 수평 라인을 삽입한다 :

<%@ 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:Repeater id="cdcatalog" runat="server">

<HeaderTemplate>
<table border="0" width="100%">
<tr>
<th>Title</th>
<th>Artist</th>
<th>Country</th>
<th>Company</th>
<th>Price</th>
<th>Year</th>
</tr>
</HeaderTemplate>

<ItemTemplate>
<tr>
<td><%#Container.DataItem("title")%></td>
<td><%#Container.DataItem("artist")%></td>
<td><%#Container.DataItem("country")%></td>
<td><%#Container.DataItem("company")%></td>
<td><%#Container.DataItem("price")%></td>
<td><%#Container.DataItem("year")%></td>
</tr>
</ItemTemplate>

<SeparatorTemplate>
<tr>
<td colspan="6"><hr /></td>
</tr>
</SeparatorTemplate>

<FooterTemplate>
</table>
</FooterTemplate>

</asp:Repeater>
</form>

</body>
</html>
»예보기