博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Asp.net +Jquery-uploadify多文件上传
阅读量:5457 次
发布时间:2019-06-15

本文共 1320 字,大约阅读时间需要 4 分钟。

页面代码如下:

处理文件UploadHandler.ashx.cs代码如下:

///     /// $codebehindclassname$ 的摘要说明    ///     [WebService(Namespace = "http://tempuri.org/")]    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]     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"])+"\\";               if (file != null)              {                 if (!Directory.Exists(uploadPath))                 {                     Directory.CreateDirectory(uploadPath);                 }                  file.SaveAs(uploadPath + file.FileName);                  //下面这句代码缺少的话,上传成功后上传队列的显示不会自动消失               context.Response.Write("1");              }               else              {                   context.Response.Write("0");               }          }         public bool IsReusable        {            get            {                return false;            }        }    }

 

 

转载于:https://www.cnblogs.com/huhangfei/p/4900316.html

你可能感兴趣的文章
jQuery 遍历 - map() 方法
查看>>
jQuery事件绑定、解绑、命名空间
查看>>
C#类,对象,构造方法
查看>>
学习笔记: AOP面向切面编程和C#多种实现
查看>>
学习笔记: 特性Attribute详解,应用封装
查看>>
java的垃圾回收方法finalize()
查看>>
Android NDK构建资料
查看>>
Linux搭建Scrapy爬虫集成开发环境
查看>>
LeetCode(21)题解:Merge Two Sorted Lists
查看>>
Ubuntu 16.04 samba 配置
查看>>
Python——文件操作
查看>>
OPENCV学习笔记2-3_图像遍历(迭代器)
查看>>
DEM转换为Features
查看>>
会计简要学习
查看>>
jquery用户自定义选择器及选择器高级用法实验
查看>>
js学习笔记3:with语句的使用
查看>>
MFC_1.2 消息映射宏 数据绑定和交换
查看>>
抽象工厂模式
查看>>
Android中Button
查看>>
android 中resources管理
查看>>