0

我在 html 输入上使用NOTIFY来通知我的用户记录是否已保存。它工作得很好。但是当我尝试从我的代码隐藏文件中使用它时,它不是。我知道 javascript 是一种客户端技术,并尝试使用 RegisterStartupScript 但没有运气。

我正在尝试在这样的按钮单击上使用它

        protected void Button1_Click1(object sender, EventArgs e)
    {
        var script = " $.notify.success('I do not want to close by myself close me ', { close: true });";
        ClientScript.RegisterStartupScript(typeof(Page), "ButtonAlert", script, true);

    }

但没有运气。

我确信一旦数据库更新,必须有一种方法可以在顶部显示通知栏。说我们可以使用函数来做到这一点吗?
我的脚本定义如下

 <!-- Notify Implementation -->
<script src="../Scripts/jquery-1.9.0.js" type="text/javascript"></script>
<link href="../Styles/notify.css" rel="stylesheet" type="text/css" />
<script src="../Scripts/notify.js" type="text/javascript" ></script>

<script type="text/javascript">

     function myNotify() {
         $.notify.success('I do not want to close by myself close me ', { close: true });
     };

有人可以帮忙吗

4

3 回答 3

1

试试这样: -

  System.Text.StringBuilder sb = new System.Text.StringBuilder();
                sb.Append("<script language='javascript'>");
                sb.Append("function notify(){");
                sb.Append("$.notify.success('I do not want to close by myself close me ', { close: true });");
    sb.Append("}");
                sb.Append("/script>");

 ClientScript.RegisterStartupScript(typeof(Page), "ButtonAlert", sb, true);
于 2013-01-28T06:28:53.097 回答
0

尝试这个 :

Page.ClientScript.RegisterStartupScript(this.GetType(),"ButtonAlert","myNotify()",true);
于 2013-01-28T06:26:15.060 回答
0

这解决了我在HERE中描述的问题。我使用了一个助手类,它解决了这个问题。

    using System.Web.UI;

public static class NotificationHelper
{
    /// <summary>
    /// Shows the successful notification.
    /// </summary>
    /// <param name="page">The page.</param>
    /// <param name="message">The message.</param>
    public static void ShowSuccessfulNotification(this Page page, string message)
    {
        page.ClientScript.RegisterStartupScript(page.GetType(), "notificationScript",
                                                "<script type='text/javascript'>  $(document).ready(function () {  $.notify.success('I do not want to close by myself close me ', { close: true });});</script>");
    }
}
于 2013-01-28T09:36:49.567 回答