• UpdatePanel中用后台CS代码调用JS代码,先执行控件事件,后触发JS


    引用地址: http://www.cnblogs.com/silenkee/articles/1609831.html
     
    页面中加入了UpdatePanel后,Response.Write("<script>function dis (){alert('这是调用写在server的JS');}</script>")来调用客户端脚本,无任何提示的无反应。难道没有办法调用客户端脚本了?
         方法是有的,那就是采用 ScriptManager.RegisterStartupScript(Control controlId,Type this.GetType(),String key,String script block)方法。ps:有见到过帖子上说controlId必须是UpdatePanel里的,其实不然,page控件就可以。
         下面给出一个具体的实例:   
    protected void Page_Load(object sender, EventArgs e)
    {
            ScriptManager.RegisterStartupScript(BtnJs, this.GetType(), "alert", "<script>function

           dis (){alert('这是调用写在server的JS,如用Response.Write()是不能实现此效果的!!!      ');}</script>", false);

    }

    复制代码
    <asp:ScriptManager ID="ScriptManager1" runat="server"  EnablePartialRendering="true" >      
    </asp:ScriptManager>
            <input id="BtnJs" type="button" value="CallServerJs" onclick="dis()" runat="server"/>
            <asp:UpdatePanel ID="UpdatePanel1" runat="server"  UpdateMode="Conditional"  RenderMode="Block">
                <ContentTemplate>
                   <asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="dis()"/>
                </ContentTemplate>     
    复制代码

            </asp:UpdatePanel>

    注意BtnJs是UpdatePanel外的按钮  同时Button1重用了服务端注册的脚本

        附带说一下,如果是在普通的aspx中希望在服务器端注册下客户端脚本,可以用

    Page.ClientScript.RegisterStartupScript(this.GetType(), String Key,String Js block ,Bool   AddScriptTag),除了注意粗体字以外,其他操作同上。紫色部分不能包含,如写了的话,浏览时会将脚本部分自动注释掉

  • 相关阅读:
    外部晶振的使用原因与内部RC振荡器的使用方法
    Linux系统下ifconfig命令使用及结果分析
    浅谈程序的内存布局
    物理内存与虚拟内存之间的映射
    如何正确理解套接字
    研究自动驾驶技术的算法需要哪些知识?
    如何防止头文件被重复包含或引用?
    虚拟机-VMware小结-汇总
    局域网内快速传输数据
    thingsboard安装
  • 原文地址:https://www.cnblogs.com/Jack-Chang/p/7095512.html
Copyright © 2020-2023  润新知