zoukankan      html  css  js  c++  java
  • 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!

  • 相关阅读:
    智力题:砝码称重问题
    Java:Comparator接口
    机器学习中比较重要的几个概念
    NLP:Gensim库之word2vec
    Java遍历Map对象的四种方式
    给数据库减负刻不容缓:多级缓存设计
    CentOS6.10安装redis5.0
    Linux下安装whl文件
    Linux下安装Gensim
    Linux下安装jieba
  • 原文地址:https://www.cnblogs.com/pokay/p/1486554.html
Copyright © 2011-2022 走看看