午夜视频在线网站,日韩视频精品在线,中文字幕精品一区二区三区在线,在线播放精品,1024你懂我懂的旧版人,欧美日韩一级黄色片,一区二区三区在线观看视频

分享

C# GridView詳解

 醉人說夢 2014-08-11
  • 前臺代碼

Java代碼 復制代碼 收藏代碼
  1. <!--id用于綁定數(shù)據(jù)的標識,-->   
  2. <asp:GridView ID="gvLog" runat="server" AutoGenerateColumns="False" CellPadding="3" CellSpacing="1"  
  3.     Width="100%" BackColor="#F3F3F3" BorderWidth="0px" OnRowDeleting="gvLog_RowDeleting" OnRowDataBound="gvLog_RowDataBound">   
  4.     <RowStyle BackColor="White" />   
  5.     <Columns>   
  6.      <!--綁定列-->   
  7.         <asp:BoundField DataField="OperId" >   
  8.             <ItemStyle CssClass="display:none;" />   
  9.         </asp:BoundField>   
  10.         <asp:BoundField HeaderText="No">   
  11.             <ItemStyle Width="30px" HorizontalAlign="Center" />   
  12.         </asp:BoundField>   
  13.         <!--帶鏈接的綁定列,DataNavigateUrlFields表示要傳遞的參數(shù),多個參數(shù)用逗號分割開-->   
  14.         <asp:HyperLinkField DataNavigateUrlFields="OperId,operName" DataNavigateUrlFormatString="OperatorEdit.aspx?OperId={0}&operName={1}"  
  15.             DataTextField="OperName" HeaderText="登錄名稱" >   
  16.             <ItemStyle Width="100px" />   
  17.         </asp:HyperLinkField>   
  18.         <asp:BoundField HeaderText="真實名稱" DataField="TrueName">   
  19.             <ItemStyle Width="100px" />   
  20.         </asp:BoundField>   
  21.         <asp:BoundField HeaderText="備注" DataField="OperMemo" />   
  22.         <asp:HyperLinkField HeaderText="授權" NavigateUrl="OperatorRole.aspx" Text="角色授權" DataNavigateUrlFields="OperId" DataNavigateUrlFormatString="OperatorRole.aspx?operId={0}">   
  23.             <ItemStyle Width="60px" HorizontalAlign="Center" />   
  24.         </asp:HyperLinkField>   
  25.         <!--事件綁定操作,該例子是刪除時間-->   
  26.         <asp:CommandField HeaderText="操作" ShowDeleteButton="True">   
  27.             <ItemStyle Width="40px" HorizontalAlign="Center" />   
  28.         </asp:CommandField>   
  29.     </Columns>   
  30.     <SelectedRowStyle BackColor="#CE5D5A" Font-Bold="True" ForeColor="White" />   
  31.     <!--表格頭部樣式-->   
  32.     <HeaderStyle BackColor="#CCCCCC" Font-Bold="True" ForeColor="#FFFEEE" Height="15px" />   
  33.    <!--隔行變色-->   
  34.     <AlternatingRowStyle BackColor="#F9F9F9" />   
  35. </asp:GridView>  

  • 后臺代碼---綁定gridview

Java代碼 復制代碼 收藏代碼
  1. DataSet ds = operServices.GetList("");   
  2. DataView dv = new DataView(ds.Tables[0]);   
  3. ///獲取或設置用于篩選在 DataView 中查看哪些行的表達式。   
  4. dv.RowFilter = "isdel=0";   
  5.   
  6. this.gvLog.DataSource = dv;   
  7. this.gvLog.DataBind();  

注1:DataView 使您能夠創(chuàng)建 DataTable 中所存儲的數(shù)據(jù)的不同視圖,這種功能通常用于數(shù)據(jù)綁定應用程序。使用 DataView,您可以使用不同排序順序顯示表中的數(shù)據(jù),并且可以按行狀態(tài)或基于篩選器表達式來篩選數(shù)據(jù)。

注2:如果獲取不到GridView隱藏控件的值,則需要加入以下一段代碼
Java代碼 復制代碼 收藏代碼
  1. ///該方法名稱應該與你綁定的時間名稱一致   
  2. protected void gvLog_RowDataBound(object sender, GridViewRowEventArgs e)   
  3. {   
  4.    if (e.Row.RowType == DataControlRowType.DataRow || e.Row.RowType == DataControlRowType.Header)   
  5.     {   
  6.         ///指定隱藏列,并賦值   
  7.         e.Row.Cells[0].Visible = false;   
  8.         e.Row.Cells[1].Visible = false;   
  9.     }   
  10. }  


注3:如果我們要根據(jù)某個條件去改變表格某個值的樣式,可以在行綁定時間方法中加入如下代碼,如:
Java代碼 復制代碼 收藏代碼
  1. protected void gvLog_RowDataBound(object sender, GridViewRowEventArgs e)   
  2. {   
  3.     if (e.Row.RowIndex != -1)   
  4.     {   
  5.         if (Convert.ToInt16(e.Row.Cells[1].Text.ToString()) == 1)   
  6.         {   
  7.             e.Row.Cells[6].Text = "<font color='red'><b>" + e.Row.Cells[6].Text.ToString() + "</b></font>";   
  8.         }   
  9.     }   

    本站是提供個人知識管理的網(wǎng)絡存儲空間,所有內容均由用戶發(fā)布,不代表本站觀點。請注意甄別內容中的聯(lián)系方式、誘導購買等信息,謹防詐騙。如發(fā)現(xiàn)有害或侵權內容,請點擊一鍵舉報。
    轉藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多