国产99久久精品_欧美日本韩国一区二区_激情小说综合网_欧美一级二级视频_午夜av电影_日本久久精品视频

最新文章專題視頻專題問答1問答10問答100問答1000問答2000關鍵字專題1關鍵字專題50關鍵字專題500關鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關鍵字專題關鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當前位置: 首頁 - 科技 - 知識百科 - 正文

詳解ASP.NET數據綁定操作中Repeater控件的用法

來源:懂視網 責編:小采 時間:2020-11-27 22:37:16
文檔

詳解ASP.NET數據綁定操作中Repeater控件的用法

詳解ASP.NET數據綁定操作中Repeater控件的用法: 一、綁定控件之Repeater .NET封裝了多種數據綁定控件,諸如GridView、DataList等但該篇文章將會從Repeater入手,因為Repeater只提供了基本的數據綁定模板,沒有內置其它分頁等功能,所以它是最原始的數據綁定控件,只要能夠熟練運用Repeater控件其它
推薦度:
導讀詳解ASP.NET數據綁定操作中Repeater控件的用法: 一、綁定控件之Repeater .NET封裝了多種數據綁定控件,諸如GridView、DataList等但該篇文章將會從Repeater入手,因為Repeater只提供了基本的數據綁定模板,沒有內置其它分頁等功能,所以它是最原始的數據綁定控件,只要能夠熟練運用Repeater控件其它

2016617184159990.png (461×410)

一、綁定控件之Repeater
.NET封裝了多種數據綁定控件,諸如GridView、DataList等但該篇文章將會從Repeater入手,因為Repeater只提供了基本的數據綁定模板,沒有內置其它分頁等功能,所以它是最原始的數據綁定控件,只要能夠熟練運用Repeater控件其它的綁定控件也就很簡單了。
1、Repeater簡介
Repeater 控件是基本模板化數據列表。 它不像GridView控件一樣能夠可視化的設計格式或樣式,因此開發時在控件模板中必須顯式聲明所有格式、格式和樣式標記。另外Repeater控件沒有內置選擇、排序、編輯、分頁等功能,它只提供了基本的數據綁定,但是它為開發人員提供了ItemCommand 事件,該事件支持在控件中收發命令。
想要綁定數據,模板是必不可少的,Repeater控件同樣支持數據模板,而且還可以在模板中添加想要的標簽,它主要用法如下圖:

2016617184226837.png (554×365)

Note:每個 Repeater 控件必須定義 ItemTemplate。

2016617184244624.png (870×204)

二、控件使用技巧
上文講解了Repeater基本的使用方法及它的一些基本特性,接下來做幾個經典的示例來運用Repeater控件。
1、數據綁定之刪除、編輯
該示例將會使用Asp.net的前臺和后臺結合來實現顯示數據,并能夠編輯和刪除數據。
刪除頁面:

2016617184314017.png (1006×152)

編輯頁面:

2016617184335193.png (1007×163)

前臺代碼:在單擊編輯按鈕后將會進入編輯頁面,頁面是由兩個Panel控件來控制,通過傳遞ID號的方式判斷顯示的是編輯頁面還是刪除頁面,另外前臺代碼通過設置控件的CommandArgument屬性來傳遞后臺所需要判斷的id號。

<body> 
 <form id="form1" runat="server"> 
 <div> 
 <asp:Repeater ID="userRepeat" runat="server" OnItemCommand="userRepeat_ItemCommand" OnItemDataBound="userRepeat_ItemDataBound"> 
 <HeaderTemplate> 
 <table border="1" style="width:1000px;text-align:center;border-collapse:collapse;"> 
 <thead style="background-color:red;"> 
 <tr> 
 <th>ID</th> 
 <th>內容</th> 
 <th>操作</th> 
 </tr> 
 </thead> 
 </HeaderTemplate> 
 <ItemTemplate> 
 <asp:Panel ID="plItem" runat="server"> 
 <tr> 
 <td><asp:Label runat="server" ID="lblID" Text='<%#Eval("id") %>'></asp:Label></td> 
 <td><%#Eval("name") %></td> 
 <td> 
 <asp:LinkButton ID="lbtEdit" CommandName="Edit" CommandArgument='<%#Eval("id") %>' runat="server">編輯</asp:LinkButton> 
 <asp:LinkButton ID="lbtDelete" CommandName="Delete" CommandArgument='<%#Eval("id") %>' runat="server">刪除</asp:LinkButton> 
 </td> 
 </tr> 
 </asp:Panel> 
 <asp:Panel ID="plEdit" runat="server"> 
 <tr> 
 <td><asp:Label runat="server" ID="Label1" Text='<%#Eval("id") %>'></asp:Label></td> 
 <td><asp:TextBox ID="txtName" runat="server" Text='<%#Eval("name") %>'></asp:TextBox></td> 
 <td> 
 <asp:LinkButton ID="lbtCancel" CommandName="Cancel" CommandArgument='<%#Eval("id") %>' runat="server">取消</asp:LinkButton> 
 <asp:LinkButton ID="lbtUpdate" CommandName="Update" CommandArgument='<%#Eval("id") %>' runat="server">更新</asp:LinkButton> 
 </td> 
 </tr> 
 </asp:Panel> 
 </ItemTemplate> 
 <FooterTemplate> 
 </table> 
 </FooterTemplate> 
 </asp:Repeater> 
 </div> 
 </form> 
</body> 

后臺代碼:在后臺代碼中很重要的兩個事件是ItemCommand和ItemDataBound,其中ItemCommand負責接收前臺傳進來的按鈕命令,根據命令的參數來設置后臺傳遞的id,并在ItemDataBound中來驗證id判斷切換顯示Panel。

using System; 
using System.Collections.Generic; 
using System.Data; 
using System.Data.SqlClient; 
using System.Web; 
using System.Web.UI; 
using System.Web.UI.WebControls; 
 
namespace WebApplication4 
{ 
 public partial class EditPage : System.Web.UI.Page 
 { 
 private int id = 0; //保存指定行操作所在的ID號 
 /// <summary> 
 /// 窗體加載時綁定數據 
 /// </summary> 
 /// <param name="sender"></param> 
 /// <param name="e"></param> 
 protected void Page_Load(object sender, EventArgs e) 
 { 
 if (!Page.IsPostBack) 
 { 
 this.DataBindToRepeater();//將數據綁定到Repeater控件上 
 } 
 } 
 
 /// <summary> 
 /// 將數據源綁定Repeater控件上 
 /// </summary> 
 private void DataBindToRepeater() { 
 //使用using語句進行數據庫連接 
 using (SqlConnection sqlCon=new SqlConnection("server=.;database=MyBlog;uid=sa;pwd=1")) 
 { 
 sqlCon.Open(); //打開數據庫連接 
 
 SqlCommand sqlcom = new SqlCommand(); //創建數據庫命令對象 
 sqlcom.CommandText = "select * from match"; //為命令對象指定執行語句 
 sqlcom.Connection = sqlCon; //為命令對象指定連接對象 
 
 this.userRepeat.DataSource = sqlcom.ExecuteReader(); //為Repeater對象指定數據源 
 this.userRepeat.DataBind(); //綁定數據源 
 } 
 } 
 
 /// <summary> 
 /// Repeater控件命令事件 
 /// </summary> 
 /// <param name="source"></param> 
 /// <param name="e"></param> 
 protected void userRepeat_ItemCommand(object source, RepeaterCommandEventArgs e) 
 { 
 //獲取命令文本,判斷發出的命令為何種類型,根據命令類型調用事件 
 if (e.CommandName=="Edit") //編輯命令 
 { 
 id = int.Parse(e.CommandArgument.ToString()); //獲取命令ID號 
 } 
 else if (e.CommandName=="Cancel") //取消更新命令 
 { 
 id = -1; 
 } 
 else if(e.CommandName=="Delete") //刪除行內容命令 
 { 
 id = int.Parse(e.CommandArgument.ToString()); //獲取刪除行的ID號 
 //刪除選定的行,并重新指定綁定操作 
 this.DeleteRepeater(id); 
 } 
 else if (e.CommandName == "Update") //更新行內容命令 
 { 
 //獲取更新行的內容和ID號 
 string strText = ((TextBox)e.Item.FindControl("txtName")).Text.Trim(); 
 int intId=int.Parse(((Label)e.Item.FindControl("lblID")).Text); 
 //更新Repeater控件的內容 
 this.UpdateRepeater(strText,intId); 
 } 
 
 //重新綁定控件上的內容 
 this.DataBindToRepeater(); 
 } 
 
 /// <summary> 
 /// 刪除行內容 
 /// </summary> 
 /// <param name="intId">刪除行所在內容的ID</param> 
 private void DeleteRepeater(int intId) { 
 using (SqlConnection sqlCon = new SqlConnection("server=.;database=MyBlog;uid=sa;pwd=1")) 
 { 
 sqlCon.Open(); //打開數據庫連接 
 
 SqlCommand sqlcom = new SqlCommand(); //創建數據庫命令對象 
 sqlcom.CommandText = "delete from match where id=@id"; //為命令對象指定執行語句 
 sqlcom.Connection = sqlCon; //為命令對象指定連接對象 
 
 //創建參數集合,并向sqlcom中添加參數集合 
 SqlParameter sqlParam = new SqlParameter("@id", intId); 
 sqlcom.Parameters.Add(sqlParam); 
 
 sqlcom.ExecuteNonQuery(); //指定更新語句 
 
 } 
 } 
 
 /// <summary> 
 /// 更新Repeater控件中的內容 
 /// </summary> 
 /// <param name="strText">修改后的內容</param> 
 /// <param name="intId">內容所在行的ID號</param> 
 private void UpdateRepeater(string strText,int intId) { 
 using (SqlConnection sqlCon = new SqlConnection("server=.;database=MyBlog;uid=sa;pwd=1")) 
 { 
 sqlCon.Open(); //打開數據庫連接 
 
 SqlCommand sqlcom = new SqlCommand(); //創建數據庫命令對象 
 sqlcom.CommandText = "update match set name=@str where id=@id"; //為命令對象指定執行語句 
 sqlcom.Connection = sqlCon; //為命令對象指定連接對象 
 
 //創建參數集合,并向sqlcom中添加參數集合 
 SqlParameter[] sqlParam = { new SqlParameter("@str", strText), new SqlParameter("@id", intId) }; 
 sqlcom.Parameters.AddRange(sqlParam); 
 
 sqlcom.ExecuteNonQuery(); //指定更新語句 
 
 } 
 } 
 
 /// <summary> 
 /// Repeater控件數據綁定時發生的事件 
 /// </summary> 
 /// <param name="sender"></param> 
 /// <param name="e"></param> 
 protected void userRepeat_ItemDataBound(object sender, RepeaterItemEventArgs e) 
 { 
 //判斷Repeater控件中的數據是否是綁定的數據源,如果是的話將會驗證是否進行了編輯操作 
 //ListItemType 枚舉表示在一個列表控件可以包括,例如 DataGrid、 DataList和 Repeater 控件的不同項目。 
 if (e.Item.ItemType==ListItemType.Item || e.Item.ItemType==ListItemType.AlternatingItem) 
 { 
 //獲取綁定的數據源,這里要注意上面使用sqlReader的方法來綁定數據源,所以下面使用的DbDataRecord方法獲取的 
 //如果綁定數據源是DataTable類型的使用下面的語句就會報錯. 
 System.Data.Common.DbDataRecord record = (System.Data.Common.DbDataRecord)e.Item.DataItem; 
 //DataTable類型的數據源驗證方式 
 //System.Data.DataRowView record = (DataRowView)e.Item.DataItem; 
 
 //判斷數據源的id是否等于現在的id,如果相等的話證明現點擊了編輯觸發了userRepeat_ItemCommand事件 
 if (id == int.Parse(record["id"].ToString())) 
 { 
 ((Panel)e.Item.FindControl("plItem")).Visible = false; 
 ((Panel)e.Item.FindControl("plEdit")).Visible = true; 
 } 
 else 
 { 
 ((Panel)e.Item.FindControl("plItem")).Visible = true; 
 ((Panel)e.Item.FindControl("plEdit")).Visible = false; 
 } 
 } 
 } 
 } 
} 

2、分頁--PageDataSource
前臺代碼:使用原始的html文本,并添加了一個Literal標簽,用來動態添加并指定html標簽。
頁面截圖:

2016617184644312.png (1016×99)

<html xmlns="http://www.w3.org/1999/xhtml"> 
<head runat="server"> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 
 <title></title> 
 <style type="text/css"> 
 
 .pageBar 
 { 
 margin-top: 10px; 
 } 
 .pageBar a 
 { 
 color: #333; 
 font-size: 12px; 
 margin-right: 10px; 
 padding: 4px; 
 border: 1px solid #ccc; 
 text-decoration: none; 
 } 
 </style> 
</head> 
<body> 
 <form id="form1" runat="server"> 
 <div> 
 
 <asp:Repeater ID="Repeater1" runat="server" > 
 <HeaderTemplate> 
 <table border="1" cellpadding="0" cellspacing="0" style="width:1006px;border-collapse:collapse; text-align:center;"> 
 <tr> 
 <th style="background-color:red">ID</th> 
 <th style="background-color:red">內容</th> 
 </tr> 
 </HeaderTemplate> 
 <ItemTemplate> 
 <tr> 
 <td><asp:Label ID="lblId" runat="server" Text='<%# DataBinder.Eval(Container.DataItem,"id") %>' ></asp:Label></td> 
 <td><%# DataBinder.Eval(Container.DataItem,"name") %></td> 
 </tr> 
 </ItemTemplate> 
 <FooterTemplate> 
 </table> 
 </FooterTemplate> 
 </asp:Repeater> 
 
 </div> 
 <div class="pageBar"> 
 <asp:Literal ID="ltlPageBar" runat="server"></asp:Literal> 
 </div> 
 </form> 
</body> 
</html> 

后臺代碼:Repeater控件的數據源是PagedDataSource對象,在頁面加載時為該對象動態指定了分頁的屬性,并使用Literal標簽來動態指定每個標簽跳轉頁的鏈接。

using System; 
using System.Collections.Generic; 
using System.Data; 
using System.Data.SqlClient; 
using System.Text; 
using System.Web; 
using System.Web.UI; 
using System.Web.UI.WebControls; 
 
namespace WebApplication4 
{ 
 public partial class PageDemo : System.Web.UI.Page 
 { 
 private string id = ""; 
 protected void Page_Load(object sender, EventArgs e) 
 { 
 if (!Page.IsPostBack) 
 { 
 //設置當前頁的索引 
 int pageIndex = 1; 
 try 
 { 
 //獲取當前索要跳轉頁的索引號 
 pageIndex = Convert.ToInt32(Request.QueryString["Page"]); 
 //如果是第0頁將會跳轉入第1頁 
 if (pageIndex <= 0) 
 { 
 pageIndex = 1; 
 } 
 } 
 catch 
 { 
 pageIndex = 1; 
 } 
 
 DataTable dt = this.GetDataTable(); //獲取綁定的數據表 
 
 PagedDataSource pds = new PagedDataSource(); //創建分頁數據源對象 
 pds.DataSource = dt.DefaultView; //為數據源對象設置數據源 
 pds.AllowPaging = true; //對象允許分頁 
 pds.PageSize = 2; //設置對象每頁顯示的大小 
 pds.CurrentPageIndex = pageIndex - 1; //設置數據源的當前頁 
 
 //向Repeater控件上綁定分頁數據源控件 
 this.Repeater1.DataSource = pds; 
 this.Repeater1.DataBind(); 
 
 //使用Literal標簽來動態指定每個標簽跳轉頁的鏈接 
 ltlPageBar.Text = this.GetPageBar(pds); 
 } 
 } 
 
 /// <summary> 
 /// 獲取每個標簽上的跳轉頁的鏈接地址 
 /// </summary> 
 /// <param name="pds">分頁數據源對象</param> 
 /// <returns>分頁操作按鈕的html文本</returns> 
 private string GetPageBar(PagedDataSource pds) 
 { 
 string pageBar = string.Empty; //聲明頁面標簽文本 
 int currentPageIndex = pds.CurrentPageIndex + 1; //獲取當前頁索引 
 
 //判斷首頁的鏈接頁面 
 if (currentPageIndex == 1) //如果該頁為第一頁,則證明它為首頁 
 { 
 pageBar += "<a href=\"javascript:void(0)\">首頁</a>"; 
 } 
 else 
 { 
 //如果不是首頁,首頁鏈接的地址將會為1 
 pageBar += "<a href=\"" + Request.CurrentExecutionFilePath + "?Page=1\">首頁</a>"; 
 } 
 
 //判斷上一頁鏈接的地址 
 if ((currentPageIndex - 1) < 1) //如果上一頁小于1則鏈接到第一頁 
 { 
 pageBar += "<a href=\"javascript:void(0)\">上一頁</a>"; 
 } 
 else 
 { 
 //如果上一頁地址不是1將會鏈接到上一頁 
 pageBar += "<a href=\"" + Request.CurrentExecutionFilePath + "?Page=" + (currentPageIndex - 1) + "\">上一頁</a>"; 
 } 
 
 //指定下一頁的鏈接地址 
 if ((currentPageIndex + 1) > pds.PageCount) 
 { 
 //如果下一頁的地址大于總頁數,將會連接到首頁 
 pageBar += "<a href=\"javascript:void(0)\">下一頁</a>"; 
 } 
 else 
 { 
 //否則的話鏈接到下一頁 
 pageBar += "<a href=\"" + Request.CurrentExecutionFilePath + "?Page=" + (currentPageIndex + 1) + "\">下一頁</a>"; 
 } 
 
 //指定末頁的鏈接地址 
 if (currentPageIndex == pds.PageCount) 
 { 
 pageBar += "<a href=\"javascript:void(0)\">末頁</a>"; 
 } 
 else 
 { 
 pageBar += "<a href=\"" + Request.CurrentExecutionFilePath + "?Page=" + pds.PageCount + "\">末頁</a>"; 
 } 
 
 return pageBar; //返回html文本 
 } 
 
 /// <summary> 
 /// 獲取數據源,重新鏈接數據 
 /// </summary> 
 /// <returns>DataTable,數據源</returns> 
 private DataTable GetDataTable() 
 { 
 DataTable dt = new DataTable(); //創建數據庫表 
 using (SqlConnection con = new SqlConnection("server=.;DataBase=MyBlog;uid=sa;pwd=1;")) 
 { 
 
 con.Open(); //打開數據庫鏈接 
 
 SqlCommand sqlCom = new SqlCommand(); //聲明并創建數據庫命令集 
 StringBuilder sqlStr = new StringBuilder(); //聲明sql語句 
 sqlStr.Append("select * from match"); //獲取sql語句 
 
 sqlCom.CommandText = sqlStr.ToString(); //為sqlcommand對象指定sql語句 
 
 sqlCom.Connection = con; //為sqlcommand對象指定鏈接對象 
 SqlDataAdapter sqlDa = new SqlDataAdapter(sqlCom); //聲明數據庫適配器 
 SqlCommandBuilder sqlBuilder = new SqlCommandBuilder(sqlDa); 
 sqlDa.Fill(dt); //填充表 
 } 
 
 return dt; 
 } 
 
 } 
} 

結語
文章主要介紹了Repeater控件的基本使用方法,并通過兩個示例來更深一步的學習了Repeater控件的使用。雖然Repeater控件封裝的操作較少,但它是最基礎的數據綁定控件,另外可以通過使用其它控件來彌補Repeater控件的不足,如可以通過使用PagedataSource類來實現數據的分頁。文章寫到這里并沒有結束,下篇文章將會著重討論ListView。

聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

詳解ASP.NET數據綁定操作中Repeater控件的用法

詳解ASP.NET數據綁定操作中Repeater控件的用法: 一、綁定控件之Repeater .NET封裝了多種數據綁定控件,諸如GridView、DataList等但該篇文章將會從Repeater入手,因為Repeater只提供了基本的數據綁定模板,沒有內置其它分頁等功能,所以它是最原始的數據綁定控件,只要能夠熟練運用Repeater控件其它
推薦度:
標簽: 綁定 使用 控件
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top
主站蜘蛛池模板: 国产最新在线视频 | 青青色在线视频 | 一区二区三区四区电影 | 国产精品久久久久久久久久久久 | 日韩亚洲欧美视频 | 538精品在线视频 | 久久国产成人精品国产成人亚洲 | 欧美激情一区二区 | 国产网站视频 | 国产在线观看一区二区三区 | 亚洲天堂一区二区三区 | 精品一区二区三区五区六区七区 | 日韩一区二区三区精品 | 日韩第二页 | 日韩亚洲欧美日本精品va | 久久综合中文字幕一区二区 | 欧美理论电影在线观看 | 欧美日韩国产综合视频在线看 | 欧美a在线观看 | 亚欧精品在线观看 | 香蕉在线观看 | 亚洲第一视频区 | 天天躁日日躁狠狠躁中文字幕老牛 | 国模吧双双大尺度炮交gogo | 九九久久精品国产 | 国产精品一区91 | 一级免费毛片 | 在线观看国产精品入口 | 久久99精品国产麻豆宅宅 | 欧美日韩三级在线 | 婷婷成人亚洲 | 国产毛片在线看 | 视频一区二区免费 | 久久久久免费精品国产小说 | 日韩亚洲欧美日本精品va | 欧美色图日韩色图 | 一区二区三区福利 | 国产全黄a一级毛片 | 91福利一区二区 | 国产免费一区二区三区免费视频 | 国产国拍亚洲精品永久不卡 |