位置:海鸟网 > IT > ASP.NET >

文件上传带多种样式的进度条

文件上传 带进度条 多种风格 非常漂亮!

部分代码:

intervalID = 0; register(form, fileUpload){ 文件上传:请选择要上传的文件

upload.aspx:

js = path = (bytes = js = "window.parent.onComplete('success', '{0} 已成功上传');"; ScriptManager.RegisterStartupScript(this, typeof(upload_aspx), "progress", string.Format(js, fileName), true); } else { if (this.fileUpload.PostedFile.ContentLength >= 1048576)//1M { const string js = "window.parent.onComplete('error', '超出上传文件限制大小,请重新选择');"; ScriptManager.RegisterStartupScript(this, typeof(upload_aspx), "progress", js, true); } else { const string js = "window.parent.onComplete('error', '上传文件出错');"; ScriptManager.RegisterStartupScript(this, typeof(upload_aspx), "progress", js, true); } } uploadInfo.IsReady = false; }}

代码就不贴完了 直接打包下载吧!