程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> asp.net 編輯gridview的小例子

asp.net 編輯gridview的小例子

編輯:ASP.NET基礎
編輯gridview例子,完整代碼如下。
復制代碼 代碼如下:
protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
     {
         GridView1.EditIndex = e.NewEditIndex;
         BingGrid();
     }
     protected void GridView1_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
     {
         GridView1.EditIndex = -1;
         BingGrid();
     }
     protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
     {
         try
         {
             GridViewRow row = GridView1.Rows[e.RowIndex];
             string TXB_FORUMNAME = ((TextBox)row.FindControl("TXB_FORUMNAME")).Text.Trim().ToString();
             int TXB_ROOTFORUMID = Convert.ToInt16(((TextBox)row.FindControl("TXB_ROOTFORUMID")).Text.Trim());
             int TXB_ISDISPLAY = Convert.ToInt16(((TextBox)row.FindControl("TXB_ISDISPLAY")).Text.Trim());
             string TXB_MASTER = ((TextBox)row.FindControl("TXB_MASTER")).Text.ToString();
             int TXB_ISLOCK = Convert.ToInt16(((TextBox)row.FindControl("TXB_ISLOCK")).Text.Trim());
             int LB_FORUMID=Convert.ToInt16(((Label)row.FindControl("Label6")).Text);
             ForumBLL.Forum_Update_Name(TXB_FORUMNAME, TXB_ISDISPLAY, TXB_ROOTFORUMID, TXB_MASTER, TXB_ISLOCK, LB_FORUMID);
         }
         catch (Exception ex)
         {
             Response.Write(ex);
         }
         GridView1.EditIndex = -1;
         BingGrid();
     }


GridView直接編輯,刪除經典例子下載
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved