• ajax下的javascript


    例1、

    如果你用的是微软的ajax框架,弹出提示框应该用:
    ScriptManager.RegisterStartupScript(this.UpdatePanel1, this.GetType(), "updateScript", "alert('对不起,账号和密码错误');", true);

    例2、

    protected void LinkButton_DocName_Command(object sender, CommandEventArgs e)//查看文献详情
    {
    string docID = e.CommandArgument.ToString();
    string key = "js";
    string javascript = " <script>window.open('DocumentDetail.aspx?docID=" + docID + "','_blank','height=300, width=820,toolbar=no,scrollbars=yes, resizable=yes') </script>";
    ScriptManager.RegisterStartupScript(GridView1, GridView1.GetType(), key, javascript, false);
    }

    P.S.

    public static void OpenerReload(Page page, string key)

            {

                Type cstype = page.GetType();

                ClientScriptManager cs = page.ClientScript;

                if (!cs.IsStartupScriptRegistered(cstype, key))

                {

                    String cstext = "window.opener.window.document.forms(0).submit();window.opener.location.href=window.opener.location.href;";//window.opener.location.reload();";

                    cs.RegisterStartupScript(cstype, key, cstext, true);

                }

            }

    //我恨ajax!

  • 相关阅读:
    day003|python基础回顾3
    14Linux之网络管理
    13Linux之磁盘管理
    12Linux之进程管理
    11Linux之软件包管理
    10Linux之用户权限管理
    09Linux之文件管理
    08Linux之目录结构
    07Linux之bash解释器交互式环境特性
    06Linux之shell介绍
  • 原文地址:https://www.cnblogs.com/pokay/p/1486554.html
Copyright © 2020-2023  润新知