0

实际上,我尝试使用 显示警报ClientScript,但没有显示。

我的代码:

ClientScript.RegisterStartupScript(this.GetType(), "myalert", "alert('File Downloaded at Location C:\\VOWF-Downloads\\');", false);
System.Web.UI.ScriptManager.RegisterStartupScript(this, this.GetType(), "MsgBox", "File Downloaded at Location C:\\VOWF-Downloads\\", true);

两个代码都不起作用:(

4

2 回答 2

0

试试下面: -

ScriptManager.RegisterStartupScript(updatePanel, updatePanel.GetType(), "a_key", "<script type='text/javascript' src='yourfile.js'></script>", false);

ScriptManager.RegisterStartupScript(updatePanel, updatePanel.GetType(), "a_key", "<script type='text/javascript'>alert('file downloaded');</script>", false);

同样在您使用 ClientScript.RegisterStartupScript 的第一行中,包含脚本标志设置为 false,我认为在您的情况下应该是 true。

于 2013-09-04T05:01:22.107 回答
0

当 devexpress 控件执行回调时,无法使用 RegisterStartupScript。

一种可能的解决方法

于 2013-09-03T14:55:27.207 回答