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

HTH

于 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 に答える