asp.net 中的消息框

发布于 2024-12-18 20:09:08 字数 342 浏览 2 评论 0原文

我需要在 asp.net 中一个简单的消息框,我尝试了以下代码。

Me.Page.ClientScript.RegisterStartupScript(Me.GetType(), "clientScript","<script>javascript:alert('Guest already associated with 
another event');</script>")

但我没有运气。实际上我有一个位于更新面板中的下拉列表,它应该通过消息框抛出错误消息。我不知道为什么 javascript 不工作。有没有其他方法可以在 MessageBox 中显示简单的错误消息。

I need a simple messagebox in asp.net, I tried the following code.

Me.Page.ClientScript.RegisterStartupScript(Me.GetType(), "clientScript","<script>javascript:alert('Guest already associated with 
another event');</script>")

but I had no luck. Actually I have a dropdownlist which is in a updatepanel it should throw an error message via a MessageBox. I don't know why javascript not working. Is there any other way by which we could show an simple error message in MessageBox.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

明月松间行 2024-12-25 20:09:08
 static public void DisplayMessage(Control page, string msg)
{
    string myScript = String.Format("alert('{0}');", msg);

    ScriptManager.RegisterStartupScript(page, page.GetType(), "MyScript", myScript, true);
}



 DisplayMessage(this, "Guest already associated with another event");
 static public void DisplayMessage(Control page, string msg)
{
    string myScript = String.Format("alert('{0}');", msg);

    ScriptManager.RegisterStartupScript(page, page.GetType(), "MyScript", myScript, true);
}



 DisplayMessage(this, "Guest already associated with another event");
放赐 2024-12-25 20:09:08

尝试:

private void MessageboxAnzeigen(string content){
  string Script 
  = "<script type=\"text/javascript\">alert('"
  + content
  + "')</script>";
  RegisterClientScriptBlock("WindowOpener", Script);
 }

try:

private void MessageboxAnzeigen(string content){
  string Script 
  = "<script type=\"text/javascript\">alert('"
  + content
  + "')</script>";
  RegisterClientScriptBlock("WindowOpener", Script);
 }
同展鸳鸯锦 2024-12-25 20:09:08

请参阅此用户控件,它将对您有所帮助
MessageBox 用户控件ASP.net

See this user control which will help you
MessageBox Usercontrol with ASP.net

不再见 2024-12-25 20:09:08

使用这种简单的方法

protected string Alert = "";
page_load(sender e ...)
{

     Alert ="<script>alert('hi');</script>";

}

,并在您的 aspx 文件中使用此代码来提醒消息

<%= Alert %>

use this simple way

protected string Alert = "";
page_load(sender e ...)
{

     Alert ="<script>alert('hi');</script>";

}

and in your aspx file use this code to alert a message

<%= Alert %>
梦初启 2024-12-25 20:09:08

更简单:

MsgBox("Text")

或者:

MsgBox("Text", 0, "Title")

0是按钮的数量(0是1,1是2...)

Easier:

MsgBox("Text")

Or:

MsgBox("Text", 0, "Title")

0 is the number of buttons (0 is 1, 1 is 2...)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文