jQuery.Uploadify插件实现带进度条的批量上传功能

本文实例讲述了jQuery.Uploadify插件实现带进度条的批量上传功能分享给大家供大家参考,具体如下:

rush:js;"> <%@ Page Language="C#" AutoEventWireup="true" CodeFile="UpLoad.aspx.cs" Inherits="UploadifyDemo_UpLoad" %> Jquery Uploadify上传带进度条,且多参数
rush:csharp;"> <%@ WebHandler Language="C#" Class="UploadHandler" %> using System; using System.Web; using System.IO; /// /// UploadHandler文件上传 /// public class UploadHandler : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; context.Response.Charset = "utf-8"; string type = context.Request["type"]; if (type=="add") { HttpPostedFile file = context.Request.Files["Filedata"]; string uploadpath = HttpContext.Current.Server.MapPath(@context.Request["folder"]); string name = context.Request.Params["name"]; //获取传递的参数 string albums = context.Request.Params["albums"]; if (file != null) { if (!Directory.Exists(uploadpath)) { Directory.CreateDirectory(uploadpath); } file.SaveAs(Path.Combine(uploadpath,file.FileName)); context.Response.Write(@context.Request["folder"] + file.FileName); } else { context.Response.Write(""); } } else if (type == "del") { string picurl = context.Request["picurl"]; try { File.Delete(context.Server.MapPath(picurl)); context.Response.Write(picurl); } catch { context.Response.Write(""); } } else { } } public bool IsReusable { get { return false; } } }

更多关于jQuery相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》、《》及《

希望本文所述对大家jQuery程序设计有所帮助。

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: &lt;span id=&quot...
jQuery 添加水印 &lt;script src=&quot;../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...