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

asp.net gridview多頁時的批量刪除

編輯:ASP.NET基礎
book_admin.aspx
復制代碼 代碼如下:
<asp:GridView ID="grwBook" runat="server" CellPadding="4" ForeColor="#333333" GridLines="None" AutoGenerateColumns="false" AllowPaging="true" DataKeyNames="ID" OnPageIndexChanging="grwBook_PageIndexChanging" PageSize="12">
    <FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
    <RowStyle BackColor="#EFF3FB" />
    <EditRowStyle BackColor="#2461BF" />
    <SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
    <PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
    <HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
    <AlternatingRowStyle BackColor="White" />
    <Columns>
    <asp:BoundField DataField="ID" HeaderText = "ID" />
    <asp:BoundField DataField="UserName" HeaderText="姓名">
    <ItemStyle Width="60px" />
    </asp:BoundField>
    <asp:BoundField DataField="Comments" HeaderText="評論">
    <ItemStyle width="500px"  />
    </asp:BoundField>
    <asp:BoundField DataField="Postdate" HeaderText="日期" />
    <asp:HyperLinkField DataNavigateUrlFields="newsid" DataNavigateUrlFormatString="../news_zi.asp?id={0}" HeaderText="文章"  DataTextField="newsid" target="_blank" />
    <asp:TemplateField HeaderText="操作" >
        <ItemTemplate>
        <asp:CheckBox runat="Server" ID="cbxId" />
        </ItemTemplate>
    </asp:TemplateField>
    </Columns>
    <PagerSettings Mode="NextPreviousFirstLast" FirstPageText="第一頁" LastPageText="末頁" NextPageText="下一頁" PreviousPageText="上一頁" />
</asp:GridView>

book_admin.aspx.cs
復制代碼 代碼如下:
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.OleDb;

public partial class admin_book_admin : System.Web.UI.Page
{

    
    protected void Page_Load(object sender, EventArgs e)
    {
        //判斷管理員是否已經登陸
        admin.checkadmin();

        btnDel.Attributes.Add("onclick", "return confirm('確定刪除嗎?')");

        if (!Page.IsPostBack)
        {
            datainit();
        }
    }

    protected void grwBook_PageIndexChanging(object sender, GridViewPageEventArgs e)
    {
        this.grwBook.PageIndex = e.NewPageIndex;
        Session["curretnPage"] = e.NewPageIndex;
        datainit();
    }

    //數據綁定
    private void datainit()
    {
        DataSet ds = db.dataSet("select ID,UserName,Comments,Postdate,newsid from Feedback order by Postdate desc,newsid desc");
        if (ViewState["currentPage"] != null)
        {
            this.grwBook.PageIndex = Convert.ToInt32(Session["currentPage"]);
        }
        this.grwBook.DataSource = ds;
        this.grwBook.DataBind();

    }

    //執行刪除操作
    protected void btnDel_Click(object sender, EventArgs e)
    {
        string sqlText = "(";
        for (int i = 0; i < grwBook.Rows.Count; i++)
        {
            //搜索第n行3列
            CheckBox cbx = (CheckBox)grwBook.Rows[i].FindControl("cbxId");
            if (cbx.Checked == true)
            {
               sqlText = sqlText + Convert.ToInt32(grwBook.DataKeys[i].Value) + ",";
            }
        }

        //判斷是否有選中
        if (sqlText != "(")
        {
            //去掉最後的逗號,並且加上右括號
            sqlText = sqlText.Substring(0, sqlText.Length - 1) + ")";
            sqlText = "delete from Feedback where ID in" + sqlText;
            try
            {
                //執行刪除語句
                db.excuteSql(sqlText);
                //重新綁定數據
                common.salert("刪除成功");
                datainit();
                //Response.Redirect("book_admin.aspx");
            }
            catch (Exception ex)
            {
                //若有錯誤發生,輸出錯誤信息
                common.salert(ex.Message);
            }
            finally
            {

            }
        }
        else
        {
            common.salert("您還沒有選中有刪除的項");
        }
    }


}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved