所以這就是我想要做的,我有一個Web應用程序,刪除一個物理文件和文件記錄數據庫。我試圖找到一種方法來提示用戶,看他們是否要刪除記錄在分貝,如果物理文件丟失...如何通過ASP.NET顯示彈出對話框並獲取彈出的值
使用ASP.NET,這裏是我陷入困境.. 。
protected void gridViewDeletingRow(...) {
// get the row to delete
bool bdelete = deleteFile();
if(bdelete)
deleteRecordinDB();
ScriptManager.RegisterStartupScript(Page, typeof(Page), Guid.NewGuid().ToString(), "javascript:alert('Document deleted successfully!');", true);
else
ScriptManager.RegisterStartupScript(Page, typeof(Page), Guid.NewGuid().ToString(), "javascript:if(!fnConfirmDeleteRecord()){return false};", true);
// i wanted to able to get the fnConfirmDeleteRecord value back here
// so that i can delete the file ...
// is there a way to do that?
}
有沒有辦法從彈出窗口中取回數值?
感謝 丹尼爾
您是否嘗試過創建用戶控件,並將其顯示在ajax面板中?那麼就把它當作任何其他頁面/表單來處理? – 2010-11-03 15:04:41
尚未,我只是使用普通的javascript來提示用戶 – aggietech 2010-11-03 15:25:49