无法从服务器端调用警报

本文关键字:调用 服务器端 | 更新日期: 2023-09-27 18:32:19

在Web窗体项目中,我需要打开警报。

我试着这样做

var script = Page.ClientScript;
                            if (!script.IsClientScriptBlockRegistered(this.GetType(), "SignOffAlert"))
                            {
                                script.RegisterClientScriptBlock(this.GetType(), "text", "SignOffAlert");
                            }

并在视图上添加 js 函数

function SignOffAlert() {
            alert('The form cannot be submitted!');
        }

按钮单击警报不存在


更新:

此代码对我有用

var script = Page.ClientScript;
                            if (!script.IsClientScriptBlockRegistered(this.GetType(), "signOffAlert"))
                            {
                                script.RegisterClientScriptBlock(this.GetType(), "signOffAlert", "alert('The form cannot be submitted!');", true);
                            }

无法从服务器端调用警报

试试这个,在Page_Load中写下:

string myscript = "  <script> function SignOffAlert() { alert('The form cannot be submitted!');}</script>";
    if (! Page.ClientScript.IsClientScriptBlockRegistered(this.GetType(), "SignOffAlert"))
    {
        Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "text", myscript);
    }

然后在形式

<asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="SignOffAlert()" />

我相信您需要注册完整的脚本

你看过这里的例子吗?http://msdn.microsoft.com/it-it/library/bahh2fef%28v=vs.110%29.aspx