asp.net上传文件进度条

场景:asp.net上传文件进度条解决思路

asp.net上传文件进度条
HTML code

<script type="text/javascript">
        function al(msg)
        {
            alert(msg);
        }
    </script>
<body>
    <form id="form1" target="UploadWindow" method="post" action="upload.aspx" enctype="multipart/form-data">
            <div>
                <div>
                    请选择文件<input id="upload" name="upload" type="file" />
                    <input id="UploadFile" type="submit" value="上传" />
                </div>
            </div>
            <div class="probar" id="prossbar"><div id="bar" class="bar"></div></div>
        </form>
    <iframe name="UploadWindow" frameborder="0" scrolling="no" width="0" height="0">
    </iframe>
</body>


C# code

if (!IsPostBack)
        {
            HttpPostedFile postfile = Request.Files["upload"];
            if (postfile != null && postfile.ContentLength != 0)
            {
                string path = Server.MapPath(@"~/upload");
                string filename = Path.GetFileName(postfile.FileName);
                int contentlength = postfile.ContentLength;
                int uploadlength = 0;
                int bufferSize = 1;
                byte[] buffer = new byte[bufferSize];
                using (FileStream fs = new FileStream(Path.Combine(path , filename), FileMode.Create))
                {
                    while (uploadlength < contentlength)
                    {
                        int bytes = postfile.InputStream.Read(buffer, 0, bufferSize);
                        fs.Write(buffer, 0, bytes);
                        uploadlength += bytes;
                        int percente = (int)Math.Ceiling((double)uploadlength / (double)contentlength * 100);
                        Response.Write("<script>window.parent.document.getElementById('bar').innerHTML='" + percente + "'</script>");
                        Thread.Sleep(100);
                    }
                }
                Response.Write("<script>window.parent.al('" + uploadlength + "')</script>");
            }
            else
                Response.Write("<script>window.parent.al('请选择文件!')</script>");
        }

研究了一天了
而且也参照别人的!之前论坛里有个大侠发了个十种风格的进度条,可惜是asp的,看着有点吃力
还有看到一些网上有进度条,可惜不是上传的,他是读了一个静态页面
大侠可以帮我看看我的代码,该哪里改呢
一直实现不了!

------解决方案--------------------
学习下。
------解决方案--------------------
http://www.uploadify.com/download/

这个下载了就可以用了,功能比较强大
------解决方案--------------------
帮顶 等待高人.............
------解决方案--------------------
进来学习下
------解决方案--------------------
我有调试好的例子,你留下邮箱,我发给你
------解决方案--------------------
帮顶!
------解决方案--------------------
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);
------解决方案--------------------
探讨

引用:
我有调试好的例子,你留下邮箱,我发给你
275345573@qq.com
谢谢了!

------解决方案--------------------
好像也有看过这方面的列子
不过都不适合 自己的项目需求
------解决方案--------------------
neatupload,搜
------解决方案--------------------
http://www.open-open.com/ajax/Upload.htm
------解决方案--------------------
进来学习下
------解决方案--------------------
http://www.open-open.com/ajax/Upload.htm
------解决方案--------------------
找找JQUERY中是不是有现成的 上传文件的 插件。我想肯定是有的。
------解决方案--------------------

------解决方案--------------------
探讨

引用:
我有调试好的例子,你留下邮箱,我发给你
帅哥
你那个例子没有进度条啊!进度条都不动啊

------解决方案--------------------
neatupload
------解决方案--------------------
这例子可以呀 刚才试了下
------解决方案--------------------
路过。学习了
------解决方案--------------------
探讨

引用:

引用:
我有调试好的例子,你留下邮箱,我发给你
275345573@qq.com
谢谢了!


还有这么好的事啊
给我也发个啊,改天也要用了
448299660@qq.com

------解决方案--------------------
探讨
引用:

引用:

引用:
我有调试好的例子,你留下邮箱,我发给你
275345573@qq.com
谢谢了!


还有这么好的事啊
给我也发个啊,改天也要用了
448299660@qq.com


这样的好事?
也给我发个吧:503624923@qq……

------解决方案--------------------
401533349@163.com发
------解决方案--------------------
jqeury这样的插件还是很多的
国内也有人介绍了
你挑一个效果好的,到中文网站上查查
------解决方案--------------------
其实不难弄嘛
------解决方案--------------------
http://www.jb51.net/article/17826.htm
里面有解决的步骤
------解决方案--------------------
探讨
我有调试好的例子,你留下邮箱,我发给你

------解决方案--------------------
探讨
我有调试好的例子,你留下邮箱,我发给你

------解决方案--------------------

------解决方案--------------------