代码文件:
시스템 사용;
System.Collections 사용;
System.ComponentModel 사용;
System.Data 사용;
System.드로잉 사용;
System.Web 사용;
System.Web.SessionState 사용;
System.Web.UI 사용;
System.Web.UI.WebControls 사용;
System.Web.UI.HtmlControls 사용;
System.Threading 사용;
네임스페이스 AjaxTest
{
/**//// <요약>
/// WebForm2에 대한 설명입니다.
/// </summary>
공개 클래스 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' >");
Response.Write("_");
Response.Write("</div>");
Response.Write("<script>mydiv.innerText = '';</script>");
Response.Write("<스크립트 언어=javascript>;");
Response.Write("var dots = 0;var dotmax = 10;function ShowWait()");
Response.Write("{var 출력; 출력 = '정재装载页면';dots++;if(dots>=dotmax)dots=1;");
Response.Write("for(var x = 0;x < dots;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 = 'hidden';");
Response.Write("window.clearInterval();}");
Response.Write("StartShowWait();</script>");
Response.Flush();//这一句是最关键的
}
개인 무효 Button1_Click(개체 전송자, System.EventArgs e)
{
//当点击按钮时,假设请求需要较长时间(这里设置为10秒)
System.Threading.Thread.Sleep(10000);
this.Label1.Text = "회사 설립";
}
웹 窗体设计器生成的代码#region Web 窗体设计器生成的代码
보호된 void OnInit(EventArgs e) 재정의
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的입니다.
//
초기화구성요소();
base.OnInit(e);
}
/**//// <요약>
/// 设计器支持所需적 방법 - 不要使用代码编辑器修改
/// 방법은 간단합니다.
/// </summary>
개인 무효 초기화 구성 요소()
{
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 Transitional//EN" >
<HTML>
<헤드>
<title>웹폼2</title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content=" http://schemas.microsoft.com/intellisense/ie5 ">
<스크립트>
HideWait();
</script>
</HEAD>
<body MS_POSITIONING="GridLayout">
<form id="Form1" method="post" runat="서버">
<FONT 얼굴="宋体">
<asp:Button id="Button1" style="Z-INDEX: 101; 왼쪽: 480px; 위치: 절대; TOP: 200px" runat="서버"
텍스트="버튼"></asp:버튼>
<asp:Label id="Label1" style="Z-INDEX: 102; 왼쪽: 632px; POSITION: 절대; TOP: 240px" runat="server">레이블</asp:Label></FONT>
</form>
</body>
</HTML>
http://fanrsh.cnblogs.com/archive/2006/06/14/425888.html