代码文件:
usando Sistema;
usando System.Collections;
usando System.ComponentModel;
usando System.Data;
usando System.Drawing;
usando System.Web;
usando System.Web.SessionState;
utilizando System.Web.UI;
usando System.Web.UI.WebControls;
usando System.Web.UI.HtmlControls;
usando System.Threading;
espacio de nombres AjaxTest
{
/**//// <resumen>
/// WebForm2 的摘要说明。
/// </summary>
clase pública WebForm2: System.Web.UI.Page
{
protegido System.Web.UI.WebControls.Button Button1;
protegido System.Web.UI.WebControls.Label Label1;
Page_Load vacío privado (remitente del objeto, System.EventArgs e)
{
Response.Write("<div id='mydiv' >");
Respuesta.Write("_");
Respuesta.Write("</div>");
Response.Write("<script>mydiv.innerText = '';</script>");
Response.Write("<lenguaje de escritura=javascript>;");
Response.Write("var puntos = 0;var dotmax = 10;función ShowWait()");
Response.Write("{var salida; salida = '正在装载页面';dots++;if(dots>=dotmax)dots=1;");
Response.Write("for(var x = 0;x < puntos;x++){salida += '·';}mydiv.innerText = salida;}");
Response.Write("función StartShowWait(){mydiv.style.visibility = 'visible'; ");
Response.Write("window.setInterval('ShowWait()',1000);}");
Response.Write("función HideWait(){mydiv.style.visibility = 'oculto';");
Response.Write("ventana.clearInterval();}");
Response.Write("StartShowWait();</script>");
Response.Flush();//这一句是最关键的
}
botón vacío privado1_Click (remitente del objeto, System.EventArgs e)
{
//当点击按钮时,假设请求需要较长时间(这里设置为10秒)
System.Threading.Thread.Sleep(10000);
this.Label1.Text = "终于加载完成啦";
}
Web 窗体设计器生成的代码#region Web 窗体设计器生成的代码
anular el vacío protegido OnInit (EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的.
//
InicializarComponente();
base.OnInit(e);
}
/**//// <resumen>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
vacío privado InicializarComponente()
{
this.Button1.Click += nuevo System.EventHandler(this.Button1_Click);
this.Load += nuevo System.EventHandler(this.Page_Load);
}
#regiónfinal
}
}
页面文件:
<%@ Idioma de página="c#" Codebehind="WebForm2.aspx.cs" AutoEventWireup="false" Hereda="AjaxTest.WebForm2" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transicional//ES" >
<HTML>
<CABEZA>
<título>WebForm2</título>
<meta nombre="GENERADOR" Contenido="Microsoft Visual Studio .NET 7.1">
<meta nombre="CODE_LANGUAGE" Contenido="C#">
<meta nombre="vs_defaultClientScript" contenido="JavaScript">
<meta nombre="vs_targetSchema" content=" http://schemas.microsoft.com/intellisense/ie5 ">
<guión>
OcultarEsperar();
</script>
</CABEZA>
<cuerpo MS_POSITIONING="GridLayout">
<id de formulario="Form1" método="publicación" runat="servidor">
<FONT face="宋体">
<asp:Botón id="Botón1" estilo="ÍNDICE Z: 101; IZQUIERDA: 480px; POSICIÓN: absoluta; ARRIBA: 200px" runat="servidor"
Texto="Botón"></asp:Botón>
<asp:Label id="Label1" style="Z-INDEX: 102; IZQUIERDA: 632px; POSICIÓN: absoluta; ARRIBA: 240px" runat="server">Etiqueta</asp:Label></FONT>
</formulario>
</cuerpo>
</HTML>
http://fanrsh.cnblogs.com/archive/2006/06/14/425888.html