zoukankan      html  css  js  c++  java
  • 嵌套的UpdatePanel

        <form id="form1" runat="server">
            
    <asp:ScriptManager ID="ScriptManager1" runat="server">
            
    </asp:ScriptManager>

        
    <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
            
    <ContentTemplate>
                
    <%= DateTime.Now %>
                
    <asp:UpdatePanel ID="UpdatePanel2" runat="server">
                    
    <ContentTemplate>
                        
    <%= DateTime.Now %>
                        
    <asp:Button ID="Button1" runat="server" Text="Button" />
                    
    </ContentTemplate>
                
    </asp:UpdatePanel>
            
    </ContentTemplate>
        
    </asp:UpdatePanel>

        
    </form>
    点击Button1按钮,只有UpdatePanel2里面的时间会更新,而UpdatePanel1中的时间不会更新,当前套UpdatePanel时,里面的UpdatePanel的控件回发不会引起外面一层的UpdatePanel更新
  • 相关阅读:
    Django URL
    django初识
    django 相关配置(pycharm)
    mysql数据库语言分类
    css常用
    Django—BBS注册页面
    Django—Auth认证模块
    Django—中间件
    Django—form组件,cookie和session
    Django—AJAX
  • 原文地址:https://www.cnblogs.com/timy/p/1167814.html
Copyright © 2011-2022 走看看