<%@ Page Language="C#" AutoEventWireup="true" CodeFile="UpLoad.aspx.cs" Inherits="UploadifyDemo_UpLoad" %>
Jquery Uploadify上传带进島条,且多参数
<본문>
上传|
取消上传
<%@ WebHandler 언어 ="C#" 클래스="UploadHandler" %>
시스템 사용;
System.Web 사용;
System.IO 사용;
/// <요약>
/// UploadHandler文件上传
///
공용 클래스 UploadHandler : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
context.Response.Charset = "utf-8";
HttpPostedFile 파일 = context.Request.Files["Filedata"];
string uploadPath = HttpContext.Current.Server.MapPath(@context.Request["folder"]);
문자열 이름 = context.Request.Params["name"]; //获取传递的参数
string albums = context.Request.Params["albums"];
if (파일 != 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;
}
}
}