1. 程式人生 > >在點選中結案時彈出操作提示

在點選中結案時彈出操作提示

在後臺中新增GridView的 RowCreated事件,如下程式碼:
e.Row.Cells[index])表示按鈕在行中的第幾個單元格,填對應的索引號,

protected void GVInfo_RowCreated(object sender, GridViewRowEventArgs e)
  {
            (e.Row.Cells[2]).Attributes.Add("onclick", "javascript:return confirm('確定要刪除嗎?')");
  }
個人覺得ButtonField有很多問題,不推薦使用,還是用模板列比較方便-------
<span id="message" onclick="JavaScript:return confirm('確定要刪除嗎?')">
 模板列前臺示例(vs2010):
 <asp:TemplateField HeaderText="刪除">
                    <EditItemTemplate>
                        <asp:TextBox ID="TextBox4" runat="server"></asp:TextBox>
                    </EditItemTemplate>
                    <ItemTemplate>
                    <span id="message" onclick="JavaScript:return confirm('確定要刪除嗎?')">
                        <asp:LinkButton ID="lnkDel" runat="server" onclick="lnkDel_Click">刪除</asp:LinkButton>
                    </ItemTemplate>
                </asp:TemplateField>

以下為來源網路:

實現對gridview刪除行時彈出確認對話方塊的一種簡單方法

相關資料連結:http://blog.csdn.net/waterxcfg304/article/details/23512211