欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Repeater與ListView功能概述及使用介紹

 更新時間:2013年02月28日 11:25:57   作者:  
Repeater(foreach)用于對綁定數(shù)據(jù)源中的數(shù)據(jù)進(jìn)行遍歷并按格式顯示,Repeater一般只用來展示數(shù)據(jù)ListView會自動生成很多模板,免去手寫模板代碼的麻煩,感興趣的你可以了解下本文

Repeater

Repeater(foreach)用于對綁定數(shù)據(jù)源中的數(shù)據(jù)進(jìn)行遍歷并按格式顯示,每條數(shù)據(jù)以什么格式顯示是由Repeater的<ItemTemplate>來決定的,模板會多次顯示,就像foreach, ItemTemplate 中相當(dāng)于{}中的語句。<ItemTemplate>姓名:<%#Eval(“Name”)%><b>年齡:<%#Eval(“Age”)%></b><br /></ItemTemplate>。注意:%和#中間不能有空格。

<%#Eval("Name")%>表示在這個位置顯示當(dāng)前實(shí)體對象的Name屬性,注意調(diào)用Eval、Bind這些數(shù)據(jù)綁定方法的時候要用#。

因?yàn)镋val就是將屬性顯示到指定的位置,因此也可以顯示到文本框中<ItemTemplate>姓名:
<asp:TextBox runat="server"Text='<%#Eval("Name") %>' />
</ItemTemplate>

注意不要寫成Text="<%#Eval('Name')%>" 因?yàn)?lt;%%>中的是C#代碼,''是字符,而不是字符串

還可以用在服務(wù)器控件中<asp:TextBox Text='<%#Eval("Name") %>'runat="server"></asp:TextBox>

DemoCode及注意點(diǎn)
Repeater.aspx

復(fù)制代碼 代碼如下:

<% @ Page Language="C#" AutoEventWireup="true" CodeBehind="Repeater.aspx.cs" Inherits ="WebForm.Repeater" %>
<! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< html xmlns ="http://www.w3.org/1999/xhtml">
< head runat ="server">
<title ></ title>
< style type ="text/css">
#tblist{ border-top :1px solid #000 ; border-left : 1px solid #000 ; margin: 0px auto ;width : 600px;}
#tblist td {border-bottom : 1px solid #000 ; border-right: 1px solid #000; padding :5px }
#didPanel {position : absolute; left :350px ; top: 200px ;width : 500px; height :70px ; border: 1px solid #000; background-color :Window ; padding: 15px ;display : none}
</style >
</ head>
< body>
<form id="form1" runat="server">
<asp : ObjectDataSource ID ="ObjectDataSource1" runat ="server"
SelectMethod ="getAllClasses" TypeName ="BLL.Classes">
< SelectParameters>
< asp: Parameter DefaultValue ="false" Name ="isDel" Type ="Boolean" />
</ SelectParameters>
</asp : ObjectDataSource>
<div >
<table id="tbList">
< asp: Repeater ID ="Repeater1" runat ="server" DataSourceID ="ObjectDataSource1">
< HeaderTemplate> <!--頭模板-->
< tr>
< td> ID </td >
< td> Name </td >
< td> Count </td >
< td> Img </td >
< td> 操作 </td >
</ tr>
</ HeaderTemplate>
< ItemTemplate> <!--項(xiàng)模板-->
< tr>
< td>< input type ="text" value =" <%# Eval("CID")%> " /></ td >
< td>
< asp: TextBox ID ="TextBox1" runat ="server" Text ='<% # Eval("CName")%> '></asp : TextBox></ td >
< td> <% #Eval( "CCount" )%> </td >
< td>
<%--<img src="images/<%#Eval("CImg")%>" style="width:100px;height:80px;"/>--%>
<!--服務(wù)器端圖片路徑需要添加images/文件路徑時 需要放在#號后 如果images/《% 會導(dǎo)致《%被作為字符串解析-->
< asp: Image ID ="Image1" runat ="server" ImageUrl ='<% # "images/"+Eval("CImg")%> ' Width ="100px" Height ="80px"/>
<!--補(bǔ)充:模板中的按鈕一般不寫OnClick事件響應(yīng),而是響應(yīng)Repeater的ItemCommand事件。-->
</ td>
</ tr>
</ ItemTemplate>
< SeparatorTemplate> <!--兩項(xiàng)數(shù)據(jù)間的間隔模板-->
< tr>
< td colspan ="5" style ="background-color :red; height:2px; line-height :3px;"></td >
</ tr>
</ SeparatorTemplate>
< AlternatingItemTemplate> <!--交替項(xiàng)模板-->
< tr style ="background-color :Gray">
< td>< input type ="text" value =" <%# Eval("CID")%> " /></ td >
< td>
< asp: TextBox ID ="TextBox1" runat ="server" Text ='<% # Eval("CName")%> '></asp : TextBox></ td >
< td> <% #Eval( "CCount" )%> </td >
< td> <% #Eval( "CImg" )%> </td >
< td>
< asp: Button ID ="btnDel" runat ="server" Text ="刪除" OnCommand ="Button_OnClick" CommandName ="Del" CommandArgument ='<% # Eval("CID")%> '/>
</ td>
</ tr>
</ AlternatingItemTemplate>
< FooterTemplate> <!--腳模板-->
< tr>
< td colspan ="5">不是所有痞子都叫一毛 </ td>
</ tr>
</ FooterTemplate>

</ asp: Repeater >
</table >
</div >
</form >
</ body>
</ html>

Repeater.aspx.cs
復(fù)制代碼 代碼如下:

using System;
using System.Web.UI.WebControls;
namespace WebForm {
public partial class Repeater : System.Web.UI. Page {
protected void Page_Load( object sender, EventArgs e) {
}
protected void Button_OnClick( object sender, CommandEventArgs e) {
//Response.Write("CommandArgument" + e.CommandArgument + "CommandName" + e.CommandName + "刪除了" + DateTime.Now);需前臺設(shè)置CommandArgument及CommandName屬性
if (new BLL. Classes().SoftDel( Convert .ToInt32(e.CommandArgument)) > 0) {
Response.Write( "刪除成功" );
Repeater1.DataBind(); //重新綁定數(shù)據(jù) 否則服務(wù)器不會重新生成Repeater數(shù)據(jù) 而是返回__VIEWSTATE中原有數(shù)據(jù)
} else {
Response.Write( "刪除失敗" );
}
}
}
}

效果圖:

ListView

Repeater一般只用來展示數(shù)據(jù),如果要增刪改查(CRUD)則用ListView更方便。使用向?qū)硎筁istView會自動生成很多模板,免去手寫模板代碼的麻煩,必要時進(jìn)行手工調(diào)整即可。

 同Repeater一樣設(shè)定數(shù)據(jù)源,然后點(diǎn)擊智能提示中的“配置ListView”,選擇一種布局和樣式,然后根據(jù)需要勾選“啟用編輯”、“啟用刪除”、“啟用插入”、“啟用分頁”,就會自動生成常用的模板。

效果圖類似:

ListView默認(rèn)的分頁是先從數(shù)據(jù)源取得所有數(shù)據(jù),然后再截取當(dāng)前頁面的部分,在數(shù)據(jù)量非常大的情況下效率非常低,因此默認(rèn)分頁基本不能用。應(yīng)該是只從數(shù)據(jù)源取得要顯示的數(shù)據(jù)。詳見下章《如何實(shí)現(xiàn)ListView高效分頁

同樣內(nèi)容點(diǎn)可參見《如何實(shí)現(xiàn)ListView高效分頁》貼出的代碼

LayoutTemplate為布局模板,布局模板中必須有一個ID為itemPlaceholder的服務(wù)端控件,項(xiàng)占位符(FrameWork4.0以后不需要),itemPlaceholder前面就是相當(dāng)于Repeater中的HeaderTemplate,itemPlaceholder后面就是相當(dāng)于Repeater中的FooterTemplate,因此ListView中沒有這兩個模板。

ItemTemplate是每一項(xiàng)的模板,AlternatingItemTemplate是隔行顯示的模板,和Repeater一樣。

EmptyDataTemplate為數(shù)據(jù)源沒有數(shù)據(jù)的時候顯示的內(nèi)容(Insert也算數(shù)據(jù)),這樣的話可以實(shí)現(xiàn)“沒有查找結(jié)果”、“對不起,找不到您要找的數(shù)據(jù)”等提示內(nèi)容

InsertItemTemplate為插入數(shù)據(jù)界面的模板,

EditItemTemplate為編輯數(shù)據(jù)的模板,

SelectedItemTemplate為標(biāo)記為Selected的行的模板。

數(shù)據(jù)源配置見上章 Asp.Net中的數(shù)據(jù)源

相關(guān)文章

最新評論