0
我有一個具有刪除按鈕的詳細視圖;當用戶點擊刪除按鈕時,他們會得到刪除確認對話框。在數據被刪除之前,我需要在detailview中使用什麼樣的命令?當用戶選擇「是」時,我想先將詳細視圖中的數據保存到某種變量中,然後將其刪除。我想獲得某種高層次的指導或某些提示。謝謝 以下是我的ASPX文件中確認對話框的代碼。在刪除前將數據保存到表中
<ItemTemplate>
<asp:Button ID="Button1" runat="server" CausesValidation="False"
CommandName="Edit" Text="Edit" />
<asp:Button ID="Button2" runat="server" CausesValidation="False"
CommandName="Delete" Text="Delete" OnClientClick="return confirm('Are you sure you want to delete');" />
</ItemTemplate>