0
我在想,如果可能的話,如何在模態彈出窗口上顯示警告框。我正在使用模式彈出式擴展器來顯示用戶填寫的表單。在窗體上有用戶必須填寫的字段,如果他們沒有填寫字段並點擊提交,那麼我想顯示一個警告框。就像現在一樣,當modalpopup仍然活動時,我無法將alertbox顯示出來。下面是alertbox我試圖使用代碼:莫塔爾彈出窗口上的警報顯示asp.net
Page.ClientScript.RegisterStartupScript(this.GetType(), "error", "alert('Please coomplete all of the required fields');", true);
我最終找到解決方案。原因是「Page.Clientscript ....」不起作用,因爲modalpop up不屬於Page。而是使用: ScriptManager.RegisterClientScriptBlock(this,this.GetType(),「myAlert」,「alert('your message');」,true); 歡呼聲 – Snicklefritz