Analytics

2012年4月9日 星期一

[ASP.NET]如何 讓UpdatePanel裡ImageButton跳出對話視窗(How triger imagebutton popup confirm dialog inner updatepanel)


問題

讓UpdatePanel裡ImageButton跳出對話視窗 一般要做到對話視窗時,會用如下:
if(confirm('登出前,未完成驗收資料將會刪除,確定執行嗎?')==false) return false;

在一般的寫法裡面,我們會將code寫在屬性裡的OnClientClick裡,但是很不幸的在updatepanel此作法無效!!





解決方法

改為寫在code哩,當page_load事件時觸發:
if (!IsPostBack)
{
   Suspend.Attributes.Add("OnClick", "javascript:if(confirm('未完成驗收資料將會放棄,確定執行嗎?')==false) return false; ");
}

沒有留言:

熱門文章