0

我有一个带有 CommandField 的数据网格来删除一行。如何在删除行之前要求用户确认删除。

<asp:CommandField HeaderText="Изтрий" ShowDeleteButton="True" DeleteText="Изтрий" />
4

4 回答 4

2
<asp:ImageButton runat="server" ID="btnDelete" ImageUrl="/Images/icons/user_delete.png" 
 ToolTip="Delete Product" CommandName="Delete"   OnClientClick="return confirm('Do you want to delete this product size ?')" />
于 2013-04-17T07:03:52.710 回答
0

这是一篇代码项目文章,它准确描述了您要归档的内容:

http://www.codeproject.com/Articles/32756/ASP-NET-GridView-delete-confirmation-using-asp-Com

高温高压

于 2013-08-14T07:30:34.377 回答
0

使用 Jquery 在数据网格中添加删除按钮的确认消息

你可以像这样为你的删除按钮设置一个类。我的类是“btndelete”

 <asp:ButtonColumn ItemStyle-CssClass="btndelete"  ButtonType="PushButton" CommandName="Delete" Text="delete"></asp:ButtonColumn>

然后写jquery代码

  $('.btndelete').live('click', function () {
            return confirm("Are you sure you want to delete this record?");
        });

这对我有用!

于 2013-08-14T07:25:08.333 回答
0

这个例子对你有帮助。如果你使用 asp 控件,请使用OnClientClick="logout()"你的函数

<script>
function logout()
{
if (confirm('Are you sure you want to logout?'))
location.href = "http://www.tackleprices.com/merchant/logout.php";
}
</script>
于 2013-04-17T07:37:00.220 回答