代碼檔案:
使用系統;
使用系統集合;
使用 System.ComponentModel;
使用系統數據;
使用系統繪圖;
使用系統.Web;
使用 System.Web.SessionState;
使用 System.Web.UI;
使用 System.Web.UI.WebControls;
使用 System.Web.UI.HtmlControls;
使用系統線程;
命名空間 AjaxTest
{
/**//// <摘要>
/// WebForm2 的摘要說明。
/// </摘要>
公用類別WebForm2:System.Web.UI.Page
{
受保護的 System.Web.UI.WebControls.Button Button1;
受保護的 System.Web.UI.WebControls.Label Label1;
私人無效Page_Load(物件發送者,System.EventArgs e)
{
Response.Write("<div id='mydiv' >");
回應.Write("_");
Response.Write("</div>");
Response.Write("<script>mydiv.innerText = '';</script>");
Response.Write("<腳本語言=javascript>;");
Response.Write("vardots = 0;vardotmax=10;function ShowWait()");
Response.Write("{var output;output = '正在載入頁面';dots++;if(dots>=dotmax)dots=1;");
Response.Write("for(var x = 0;x < 點;x++){output += '·';}mydiv.innerText = 輸出;}");
Response.Write("function StartShowWait(){mydiv.style.visibility = 'visible'; ");
Response.Write("window.setInterval('ShowWait()',1000);}");
Response.Write("function HideWait(){mydiv.style.visibility = '隱藏';");
Response.Write("window.clearInterval();}");
Response.Write("StartShowWait();</script>");
Response.Flush();//這句話才是最關鍵的
}
private void Button1_Click(物件發送者, System.EventArgs e)
{
//點擊按鈕時,假設請求需要幾分鐘時間(這裡設定為10秒)
System.Threading.Thread.Sleep(10000);
this.Label1.Text = "終於載入完成囉";
}
Web 表單設計器產生的程式碼#region Web 表單設計器產生的程式碼
覆蓋 protected void OnInit(EventArgs e)
{
//
// CODEGEN: 呼叫是 ASP.NET Web 表單設計者所必需的。
//
初始化組件();
基.OnInit(e);
}
/**//// <摘要>
/// 設計器支援所需的方法 - 不要使用程式碼編輯器修改
/// 該方法的內容。
/// </摘要>
私有無效InitializeComponent()
{
this.Button1.Click += new System.EventHandler(this.Button1_Click);
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
}
}
頁面檔案:
<%@ 頁面語言="c#" Codebehind="WebForm2.aspx.cs" AutoEventWireup="false" Inherits="AjaxTest.WebForm2" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 轉場//EN" >
<HTML>
<頭>
<標題>WebForm2</標題>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<元名稱=“CODE_LANGUAGE”內容=“C#”>
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content=" http://schemas.microsoft.com/intellisense/ie5 ">
<腳本>
隱藏等待();
</腳本>
</頭>
<body MS_POSITIONING="GridLayout">
<form id="Form1" method="post" runat="server">
<FONTface="宋體">
<asp:Button id="Button1" style="Z-INDEX: 101; 左: 480px; 位置: 絕對; 頂部: 200px" runat="伺服器"
Text="按鈕"></asp:按鈕>
<asp:Label id="Label1" style="Z-INDEX: 102; LEFT: 632px; POSITION: Absolute; TOP: 240px" runat="server">標籤</asp:Label></FONT>
</形式>
</正文>
</HTML>
http://fanrsh.cnblogs.com/archive/2006/06/14/425888.html