我想刪除一個巨大的記錄,點擊一個按鈕,從DB .hard刪除。我的要求是在刪除前提示用戶兩次。 1.是否要刪除?通過確認框wheich我已經在按鈕來完成 2.從CS頁點擊像「你確定要刪除500個項目」中的.cs頁我得到記錄計數..how到從數據庫中刪除ITEM的雙重確認?
<asp:Button ID="btnReviewAll" Visible="false" runat="server" Text="Review All"
CssClass="button" ToolTip="Click to Review All" OnClick="btnReviewAll_Click" OnClientClick="javascript:return confirm('Are you sure want to Review all Closed Items??');" />
按鈕點擊提示用戶進行並在任何確認框中顯示。
protected void btnReviewAll_Click(object sender, EventArgs e)
{
try
{
List<Items> lstWorkItems = objBPC.GetCurrentWorkItems();
//what to write here
}
catch (System.Exception ex)
{
Utils.DisplayMasterError(this.Page.Master, ex);
}
其實我必須顯示刪除的項目數量,我不能在js中硬編碼 –