Rumah  >  Artikel  >  hujung hadapan web  >  Jquery Uploadify多文件上传带进度条且传递自己的参数_jquery

Jquery Uploadify多文件上传带进度条且传递自己的参数_jquery

WBOY
WBOYasal
2016-05-16 17:24:09827semak imbas
复制代码 代码如下:





Jquery Uploadify上传带进度条,且多参数









用户名:

相册名:







上传|
取消上传





复制代码 代码如下:



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";

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("1");
}
else
{
context.Response.Write("0");
}
}

public bool IsReusable
{
get
{
return false;
}
}
}
Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn