<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm42.aspx.cs" Inherits="ASP.NETWebControlDaQuan.WebForm42" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<%--刷新页面区域--%>
<div style="background-color:Yellow">
刷新页面后的时间:<%=DateTime.Now.ToString() %><br />
<asp:Button ID="button2" runat="server" Text="点击此按钮,页面刷新,两个时间都会发生变化" />
</div>
<br />
<%--无刷新页面区域--%>
<div style="background-color:Green">
<asp:ScriptManager ID="sm" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="up" runat="server">
<ContentTemplate>
无刷新页面,点击按钮后的时间:<%=DateTime.Now.ToString() %><br />
<asp:Button ID="button" runat="server" Text="点击此按钮,页面无刷新,只有第二个时间会发生改变" />
</ContentTemplate>
</asp:UpdatePanel>
</div>
</form>
</body>
</html>