<%@ Page Language="C#" AutoEventWireup="true" CodeFile="UpLoad.aspx.cs" Inherits="UploadifyDemo_UpLoad" %>
Jquery Uploadify 上传带进度条、および多くのパラメータ
上传|
取消上传
<%@ WebHandler 言語="C#" クラス="アップロードハンドラー" %>
システムを使用しています。
System.Web を使用;
System.IO を使用;
/// <概要>
/// UploadHandler文件上传
///
public class 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;
}
}
}