GridView的修改,刪除,查詢

来源:http://www.cnblogs.com/shouce/archive/2016/02/01/5174356.html
-Advertisement-
Play Games

前臺代碼: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 <div> <asp:GridView ID="GridView1" runa


前臺代碼:

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 <div>       <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" OnRowCancelingEdit="GridView1_RowCancelingEdit" OnRowDeleting="GridView1_RowDeleting" OnRowEditing="GridView1_RowEditing" OnRowUpdating="GridView1_RowUpdating" DataKeyNames="DepartId">           <Columns>               <asp:TemplateField>                   <HeaderTemplate>                       部門編號                   </HeaderTemplate>                   <EditItemTemplate>                       <asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("DepartId") %>'></asp:TextBox>                   </EditItemTemplate>                   <ItemTemplate>                       <asp:Label ID="Label1" runat="server" Text='<%# Bind("DepartId") %>'></asp:Label>                   </ItemTemplate>               </asp:TemplateField>               <asp:TemplateField>                   <HeaderTemplate>                       部門名稱                   </HeaderTemplate>                   <EditItemTemplate>                       <asp:TextBox ID="TextBox2" runat="server" Text='<%# Bind("DepartName") %>'></asp:TextBox>                   </EditItemTemplate>                   <ItemTemplate>                       <asp:Label ID="Label2" runat="server" Text='<%# Bind("DepartName") %>'></asp:Label>                   </ItemTemplate>               </asp:TemplateField>               <asp:TemplateField HeaderText="操作" ShowHeader="False">                   <EditItemTemplate>                       <asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="True" CommandName="Update" Text="更新"></asp:LinkButton>                        <asp:LinkButton ID="LinkButton2" runat="server" CausesValidation="False" CommandName="Cancel" Text="取消"></asp:LinkButton>                   </EditItemTemplate>                   <ItemTemplate>                       <asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="False" CommandName="Edit" Text="編輯"></asp:LinkButton>                       <asp:LinkButton ID="LinkButton2" CausesValidation="false" CommandName="Delete" Text="刪除" runat="server" />                                       </ItemTemplate>               </asp:TemplateField>           </Columns>       </asp:GridView>   </div>

後臺代碼:

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 public partial class WebForm3 : System.Web.UI.Page     {         DepartmentInfoBLL dbll = new DepartmentInfoBLL();         protected void Page_Load(object sender, EventArgs e)         {             if (!IsPostBack)             {                 InitGridView();             }         }           private void InitGridView()         {             IList<DepartmentInfo> list = dbll.GetAll();             this.GridView1.DataSource = list;             this.GridView1.DataBind();         }           protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)         {             int departId = int.Parse(e.Keys[0].ToString());             //執行刪除的方法             dbll.DeleteByDepartId(departId);             //重新載入數據             InitGridView();         }           protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)         {             this.GridView1.EditIndex = e.NewEditIndex;             InitGridView();         }           protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)         {             GridViewRow row = this.GridView1.Rows[e.RowIndex];             int departId = int.Parse(e.Keys[0].ToString());             string departName = (row.FindControl("TextBox2"as TextBox).Text;             //執行修改的方法             dbll.Update(new DepartmentInfo()             {                 DepartId = departId,                 DepartName = departName,                 Remark= ""             });             //取消編輯狀態             this.GridView1.EditIndex = -1;             //重新載入一次數據             InitGridView();         }           protected void GridView1_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)         {             this.GridView1.EditIndex = -1;             InitGridView();         }     }

  


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 通過UIScrollView展示圖片的時候,如果直接向UIScrollView添加UIImageView,在圖片數量比較少的時候是沒有問題的,但是當我們添加圖片數量非常多的時候,會占用大量的記憶體,我們就來講一下怎樣通過重新構建一個可以實現視圖重用的的UIScrollView來避免這樣的事情發生! 第
  • 為App Store開發程式,開發者必須遵守 Program License Agreement (PLA)、人機交互指南(HIG)以及開發者和蘋果簽訂的任何協議和合同。 以下規則和示例旨在幫助開發者的程式能獲得。 編號 中文內容 1.1 為App Store開發程式,開發者必須遵守 Program
  • 最近在看Unity shader開發實戰詳解,剛開始看陰影部分,稍微有了點思路.在這裡寫點筆記,算是小結吧. .陰影實現方法 一種是通過模擬光照的原理,用向量的方法 找到被光線照射的點 映射到平面的位置。這個需要高中的立體幾何知識就能解決,通過向量的計算找到一條線相交於一個平面的點。將點的顏色改變
  • 1、關於頭文件 #include <stdio.h> #import <Foundation/Foundation.h> 區別:#import指令導入更快更有效率。#include指令告訴編譯器做呆板的複製粘貼,將包含的內容粘貼到目標文件中來。而#import則會先檢查之前是否已經導入過這個文件或是
  • 1、為何引入input system? 以前我們寫一些輸入設備(鍵盤、滑鼠等)的驅動都是採用字元設備、混雜設備處理的。問題由此而來,Linux開源社區的大神們看到了這大量輸入設備如此分散不堪,有木有可以實現一種機制,可以對分散的、不同類別的輸入設備進行統一的驅動,所以才出現了輸入子系統。 輸入子系統
  • 轉自:http://www.infoq.com/cn/news/2015/12/linux-performance 如果你的Linux伺服器突然負載暴增,告警簡訊快發爆你的手機,如何在最短時間內找出Linux性能問題所在?來看Netflix性能工程團隊的這篇博文,看它們通過十條命令在一分鐘內對機器性
  • 目的:把本地上傳的圖片放置到跟目錄下的Images/Upload文件夾下。 修改步驟: 1、ueditor.config.js文件中的, imagePath: URL + "net/" 修改為: imagePath: "/" 2、net文件夾下的Config.cs文件中, public static
  • class ServicePinger { private static readonly ILog log = LogManager.GetLogger(typeof(ServicePinger)); public ServicePinger(string siteName, string sit
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...