欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

js loading加载效果实现代码_javascript技巧

程序员文章站 2022-03-17 08:01:50
...
复制代码 代码如下:

protected void Page_Load(object sender, EventArgs e)
{
ShowLoading();
System.Threading.Thread.Sleep(10000);
ClientScript.RegisterClientScriptBlock(typeof(string), "", "");
}

///
/// 显示页面正在加载中效果
///

public void ShowLoading()
{
StringBuilder s = new StringBuilder();
s.Append(" \n");
s.Append("\n");
s.Append("
\n");
s.Append("
\n");
s.Append("
页面正在加载中...
\n");
s.Append("
\n");
s.Append("
\n ");
//HttpContext.Current.Response.Write(s.ToString());
HttpContext.Current.Response.Write(s.ToString());
//HttpContext.Current.Response.Flush();
相关标签: loading