这个可以 http://www.ajaxuploader.com

解决方案 »

  1.   

    参考这个
    在Page_Load事件里输入: Visual C# .NET代码 
    加如命名空间:using System.Threading;
    Response.Write("<div id='mydiv' >");
    Response.Write("_");
    Response.Write("</div>");
    Response.Write("<script>mydiv.innerText = '';</script>");
    Response.Write("<script language=javascript>;");
    Response.Write("var dots = 0;var dotmax = 10;function ShowWait()");
    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>
      

  2.   

    如果用AJAX做简单的话,你就给出AJAX的代码出来看看
      

  3.   

    源码没有,你自己写吧。你可以做个table,然后给table上颜色。
      

  4.   

    好像fileupload控件最大上传为4M
    要大文件上传必需另外写代码