如何在我的asp.net页面中显示MessageBox?

时间:2012-09-27 11:29:05

标签: asp.net

如何在ASP.NET页面中显示MessageBox?完成后我想让bZ显示一条消息。

5 个答案:

答案 0 :(得分:0)

简单的方法是

Response.Write("<script>alert('Hello');</script>"); 

string script = "<script type=\"text/javascript\">alert('Hello world');</script>"; 
if (!page.ClientScript.IsClientScriptBlockRegistered("alert"))
{
 page.ClientScript.RegisterClientScriptBlock(page.GetType(), "alert", script, false);
}

答案 1 :(得分:0)

尝试使用:
关于文件背后的代码

    protected void Button1_Click(object sender, EventArgs e)
    {
        ClientScript.RegisterStartupScript(this.GetType(), "Alert", "alert('hello World');", true);
    }

在aspx文件中:

<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button" />

答案 2 :(得分:0)

所有网络表单加密的答案是什么?仅仅因为他碰巧使用webforms并不意味着webforms解决方案是一个很好的解决方案。

使用

<script type="text/javascript"> alert('hello world');</script>

<script type="text/javascript"> confirm('are you there?');</script>

表示消息框或确认框

答案 3 :(得分:0)

您可以使用this jquery插件

并在代码背后:

ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "Key", "noty({ text: '<div>Thanks<br/><br/>Saved!</div>', layout: 'center', type: 'information' });", true);

答案 4 :(得分:0)

在我的项目中我显示消息框以便在使用时点击删除按钮clink并显示如下所示的div

在我看来,我有一个我为消息显示的div

<div id="dialog-confirm" title="Delete Country">
    <p>
        Are you soure you wont to delete this record ?</p>
</div>  

我的删除链接按钮是

<asp:LinkButton id="lnkShow" runate="server" class="lnkDelete"></asp:LinkButton>

我使用这个链接

<script type="text/javascript">
    $(function () {
        $(".lnkDelete").button();       
        $("#dialog-confirm").dialog({
            autoOpen: false,
            model: true,
            width: 300,
            resizable: false,
            height: 200
        });

        $(".lnkDelete").click(function (e) {
            e.preventDefault();
            var targeturl = $(this).attr("href");


            $("#dialog-confirm").dialog({
                buttons: {
                    "Confirm": function () {
                        window.location.href = targeturl;
                    },
                    "Cancel": function () {
                        $(this).dialog("close");
                    }
                }
            });
            $("#dialog-confirm").dialog("open");
        });
    });
</script>
        }

我认为这会对你有所帮助