博客
关于我
asp.net ajax技巧7
阅读量:127 次
发布时间:2019-02-26

本文共 2116 字,大约阅读时间需要 7 分钟。

继续读老章的书,这次是看到如何在一个master页面中放些按钮,然后点的时候,更新content页面中的东西,而且可以做到局部更新。先看主MASTER页面
master页面的前台
<form id="form1" runat="server">
        <div>
            <asp:ScriptManager ID="ScriptManager1" runat="server" />
            <asp:Panel ID="MasterPanel1" runat="server" GroupingText="主控页面">
               <asp:Button ID="MasterButton1" runat="server" Text="整页更新" />
               <asp:Button ID="MasterButton2" runat="server" Text="局部更新" OnClick="MasterButton2_Click" Width="128px" />
            </asp:Panel>
            <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
            </asp:ContentPlaceHolder>
        </div>
master页面的后台

 protected void Page_Load(object sender, EventArgs e)

    {
        ScriptManager1.RegisterAsyncPostBackControl(MasterButton2);
    }

    public DateTime LastUpdate

    {
        get
        {
            if(ViewState["LastUpdate"] == null)
            {
                return DateTime.Now;
            }
            else
            {
                return Convert.ToDateTime(ViewState["LastUpdate"]);
            }
        }
        set
        {
            ViewState["LastUpdate"] = value;
        }
    }

    protected void MasterButton2_Click(object sender, EventArgs e)

    {
        LastUpdate = DateTime.Now;
        UpdatePanel up1 = (UpdatePanel)(ContentPlaceHolder1.FindControl("UpdatePanel1"));
        up1.Update();
    }

注意这里因为希望主页面的“局部更新”按钮能引发异步更新内容页面中的UPDATEPANEL控件的内容,因此必须用
        ScriptManager1.RegisterAsyncPostBackControl(MasterButton2);
注册该按钮引发的事件。
   要注意masterbutton2_click事件的写法,调用内容页中的updatepanel控件的UPDATE方法来更新内容。
然后在内容页中前台中

<%@ Page Language="C#" MasterPageFile="~/ThirdMasterPage.master" AutoEventWireup="true"

    CodeFile="CH3_DemoForm040.aspx.cs" Inherits="CH3_DemoForm040" Title="如何于主控页面中使用 UpdatePanel 控件" %>

<%@ MasterType VirtualPath="ThirdMasterPage.master" %>

<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
    <asp:Panel ID="Panel2" GroupingText="内容页面" runat="server">
        <asp:UpdatePanel ID="UpdatePanel1" UpdateMode="Conditional" runat="server">
            <ContentTemplate>
                <p>
                    上一次更新:<strong><%= Master.LastUpdate.ToString() %></strong></p>
                <asp:Button ID="ContentButton" OnClick="ContentButton_Click" runat="server" Text="局部更新">
                </asp:Button>
            </ContentTemplate>
        </asp:UpdatePanel>
    </asp:Panel>
</asp:Content>

后台中,为其“局部更新”编写相关的事件,以将当前日期时间给主控页面的lastupdate属性
protected void ContentButton_Click(object sender, EventArgs e)
    {
        Master.LastUpdate = DateTime.Now;
    }

转载地址:http://zssf.baihongyu.com/

你可能感兴趣的文章
MySQL binlog三种模式
查看>>
multi-angle cosine and sines
查看>>
Mysql Can't connect to MySQL server
查看>>
mysql case when 乱码_Mysql CASE WHEN 用法
查看>>
Multicast1
查看>>
MySQL Cluster 7.0.36 发布
查看>>
Multimodal Unsupervised Image-to-Image Translation多通道无监督图像翻译
查看>>
MySQL Cluster与MGR集群实战
查看>>
multipart/form-data与application/octet-stream的区别、application/x-www-form-urlencoded
查看>>
mysql cmake 报错,MySQL云服务器应用及cmake报错解决办法
查看>>
Multiple websites on single instance of IIS
查看>>
mysql CONCAT()函数拼接有NULL
查看>>
multiprocessing.Manager 嵌套共享对象不适用于队列
查看>>
multiprocessing.pool.map 和带有两个参数的函数
查看>>
MYSQL CONCAT函数
查看>>
multiprocessing.Pool:map_async 和 imap 有什么区别?
查看>>
MySQL Connector/Net 句柄泄露
查看>>
multiprocessor(中)
查看>>
mysql CPU使用率过高的一次处理经历
查看>>
Multisim中555定时器使用技巧
查看>>