-2

如何在我的 ASP.NET 页面中显示 MessageBox?完成后,我希望 bZ 显示一条消息。

4

5 回答 5

0

在我的项目中,我在使用单击删除按钮时显示消息框以进行确认,并显示如下所示的 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>
        }

我想这会对你有所帮助

于 2012-09-27T14:03:27.227 回答
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" />
于 2012-09-27T11:39:17.660 回答
0

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

使用任何一个

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

或者

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

用于消息框或确认框

于 2012-09-27T12:49:26.567 回答
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);
}
于 2012-09-27T11:30:59.630 回答
0

你可以使用这个jquery插件

在后面的代码中:

ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "Key", "noty({ text: '<div>Thanks<br/><br/>Saved!</div>', layout: 'center', type: 'information' });", true);
于 2012-09-27T13:52:50.910 回答