Analytics

2013年10月17日 星期四

[ASP.NET]解決 showModalDialog開啟的視窗裡有PostBack的動作時,會自行在開一個視窗問題 (Solve showModalDialog open windows there PostBack action, it will open a window on their own problem)


問題
使用如下方式開啟另一視窗,被開啟的視窗裡有PostBack的動作時,會自行在開一個視窗
<script type="text/javascript">

function CallDialog()                                            
{  
    window.showModalDialog("myDialog.aspx",window,"status:false;dialogWidth:300px;dialogHeight:300px;dialogLeft:50px;dialogTop:200px");
}
</script>




解決方法 在被開啟的視窗的<head>裡,加入 <base target="_self" />

沒有留言:

熱門文章