CommandField を使用して行を削除するデータグリッドがあります。行を削除する前に削除の確認をユーザーに求める方法。
<asp:CommandField HeaderText="Изтрий" ShowDeleteButton="True" DeleteText="Изтрий" />
<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 ?')" />
これは、アーカイブしたいものを正確に説明するコードプロジェクトの記事です。
http://www.codeproject.com/Articles/32756/ASP-NET-GridView-delete-confirmation-using-asp-Com
HTH
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?");
});
これは私のために働きます!
この例はあなたを助けます.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>