如何在asp.net中调用ASPxPopupControl_WindowCallback中的Javascript函数
本文关键字:WindowCallback 中的 Javascript 函数 ASPxPopupControl 调用 asp net | 更新日期: 2023-09-27 17:58:12
我有一个ASPxPopupControl,在回调函数中我想调用一个javascript函数
<script type="text/javascript">
function ShowAlert() {
alert('Display Message Alert');
}
</script>
protected void ASPxPopupControl_WindowCallback(object source, DevExpress.Web.ASPxPopupControl.PopupWindowCallbackArgs e) {
I want to Call ShowAlert() javascript function from here
}
I tried this code but it only works on button click event
Page.ClientScript.RegisterStartupScript(GetType(), "MyKey", "ShowDetailView();", true);
这是一个工作代码,它将从codeehind调用javascript函数。
<script type="text/javascript">
function ShowAlert() {
alert('Display Message Alert');
}
</script>
代码隐藏
Page.ClientScript.RegisterStartupScript(this.GetType(), "Call my function", "ShowAlert();", true);
额外如果您想用javascript而不是弹出窗口打开窗口,
ScriptManager.RegisterStartupScript(Page, typeof(Page), "Alert", "window.open('description.aspx','Mywindow','scrollbars=Yes,width=800,menubar=yes, resizable=No');", true);