在ASP.NET中显示进度条(2) Response.Write("{var output; output = '正在装载页面';dots++;if(dots>=dotmax)dots=1;")Response.Write("for(var x = 0;x < dots;x++){output += '·';}mydiv.innerText = output;}")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()Thread.Sleep(10000)
在ShowProgress.aspx窗体的html的中输入: <script>HideWait();</script>
点在浏览器中查看即可。