zoukankan      html  css  js  c++  java
  • Atlas UpdatePanel代码简介

    <html >
    <head runat="server">
        <title>Atlas之UpdatePanel</title>
    </head>
    <body>
        <form id="form1" runat="server">
        <!-- 引入Atlas类库 -->
        <atlas:ScriptManager ID="m1" runat ="server" EnablePartialRendering="true" ></atlas:ScriptManager>
        <!-- 普通.net控件 -->
        <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged">
                <asp:ListItem>1</asp:ListItem>
                <asp:ListItem>2</asp:ListItem>
        </asp:DropDownList>
        <asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" /><br />
        <!-- 数据提交时出现提示等待状态 -->
        <atlas:UpdateProgress ID="ps" runat ="server" >
            <ProgressTemplate >
                数据加载中...
            </ProgressTemplate>
        </atlas:UpdateProgress>
        <!-- 需要动态更新的部份放到updatepanle里面(更新不刷新) -->
        <atlas:UpdatePanel ID="p1" runat ="server" >
            <!-- 更新部分内容 -->
            <ContentTemplate >
                <asp:Label ID="Label1" runat="server"></asp:Label>
            </ContentTemplate>
            <!-- 更新条件 -->
            <Triggers> 
                <!-- 控件的某个值改变 -->
                <atlas:ControlValueTrigger ControlID ="DropDownList1" PropertyName ="SelectedValue" />
                <!-- 控件的某个事件激发 -->
                <atlas:ControlEventTrigger ControlID ="Button1" EventName ="Click" />
            </Triggers>
        </atlas:UpdatePanel>
        </form>
    </body>
    </html>

    此代码实现的效果:改变DropDownList1选项或单击Button1后页面(这里仅是Label1显示的内容)更新但是不刷新!

  • 相关阅读:
    用自己电脑搭建外网可访问的服务器(转)
    vue页面开发,简单技术点总结
    学习网站
    bzoj4530&&#3805. 大融合
    bzoj4137&&dtoj#2259. 火星商店问题
    bzoj-4009&&dtoj#2284. 接水果(fruit)
    bzoj5407: girls
    bzoj3498: PA2009 Cakes
    CF938F Erasing Substrings
    dtoj#4138. 染色(ranse)
  • 原文地址:https://www.cnblogs.com/chy710/p/517913.html
Copyright © 2011-2022 走看看