asp.net 从代码隐藏调用javascript

本文关键字:调用 javascript 隐藏 代码 net asp | 更新日期: 2023-09-27 17:56:21

我在 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 });
     };

有人可以帮忙吗

asp.net 从代码隐藏调用javascript

尝试如下:-

  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);

试试这个:

Page.ClientScript.RegisterStartupScript(this.GetType(),"ButtonAlert","myNotify()",true);

这解决了我的问题,如 这里.我使用了一个帮助程序类,哟,它解决了这个问题。

    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>");
    }
}