代码是这样的:
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" Width="388px" OnRowCommand="GridView1_RowCommand" >
            <Columns>
                <asp:BoundField DataField="id"  HeaderText="id"/>
                <asp:BoundField DataField="title" HeaderText="title"/>
                <asp:BoundField DataField="fb_time" HeaderText="fb_time"/>
                <asp:ButtonField Text="删除" CommandName="del" />
            <colums>
</asp:GridView>后台:
protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
    {
     if (e.CommandName == "del")
        {
           
            int index = Convert.ToInt32(e.CommandArgument);            GridViewRow row = GridView1.Rows[index];
            int deleteid = Convert.ToInt32(row.Cells[0].Text.ToString());
            string delcmd = "delete from table where id=" + deleteid;
            delete.....
            
            
            
        } 现在想有个确认弹出框,该怎么加代码。