asp.net 一般处理程序接收上传文件的问题
2018-06-22 07:49:33来源:未知 阅读 ()
在使用Html+ashx处理文件上传时,遇到上传文件超过4M的问题,首先HTML代码如下:
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> <meta charset="utf-8" /> </head> <body> <div> 单文件上传 <form enctype="multipart/form-data" method="post" action="UpLoadHandler.ashx"> <input type="file" name="files" /> <input type="submit" value="上传" /> </form> </div> <div> 多文件上传 <form enctype="multipart/form-data" method="post" action="UpLoadHandler.ashx"> <input type="file" name="files" multiple /> <input type="submit" value="上传" /> </form> </div> </body> </html>
一般处理程序UpLoadHandler.ashx的代码如下:
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Web; namespace Zhong.Web { /// <summary> /// UpLoadHandler 的摘要说明 /// </summary> public class UpLoadHandler : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; //获取所有的上传文件 //如果上传的文件超过了4M,则会报异常[超过了最大请求长度。],需要在Web.config配置 HttpFileCollection hfc = context.Request.Files; //如果是hfc.Count为0,则可以认为是直接请求该ashx处理程序 for (int i = 0; i < hfc.Count; i++) { HttpPostedFile hpf = hfc[i]; if (hpf.ContentLength > 0) { //大小限制 int maxSize = 2 * 1024 * 1024; //最大是2M(转换为字节) if (hpf.ContentLength > maxSize) { context.Response.Write("上传文件大小超出限制"); return; } //扩展名限制 string[] exts = { "image/jpg", "image/jpeg", "image/gif", "image/png" }; if (!exts.Contains(hpf.ContentType.ToLower())) { context.Response.Write("必须上传图片文件"); return; } string fileName = Path.GetFileName(hpf.FileName); hpf.SaveAs(context.Server.MapPath("~/UpLoad/" + fileName)); } } ////获取指定name的文件上传 ////该方式如果是html5的<input type="file" name="files" multiple />则始终是获取第一个上传的文件,multiple ////是支持多个文件上传,所以如果上传文件多于一个,则会丢失 //HttpPostedFile hpf = context.Request.Files["files"]; //if (hpf!= null && hpf.ContentLength > 0) //{ // hpf.SaveAs(context.Server.MapPath("~/UpLoad/" + Path.GetFileName(hpf.FileName))); //} context.Response.Write("上传成功"); } public bool IsReusable { get { return false; } } } }
在上传一个超过4M的文件时,异常如下:
这时可以通过配置web.config修改文件上传的大小限制。
<?xml version="1.0" encoding="utf-8"?> <!-- 有关如何配置 ASP.NET 应用程序的详细信息,请访问 http://go.microsoft.com/fwlink/?LinkId=169433 --> <configuration> <system.web> <!--maxRequestLength的单位是kb,最大不能超过2097151 Kb即4GB,executionTimeout执行超时,单位是秒--> <httpRuntime maxRequestLength="2097151" executionTimeout="600"/> <compilation debug="true" targetFramework="4.0" /> </system.web> </configuration>
此处增加了一行<httpRuntime maxRequestLength="2097151" executionTimeout="600"/>
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- asp.net源程序编译为dll文件并调用的实现过程 2020-03-29
- Asp.net MVC SignalR来做实时Web聊天实例代码 2020-03-29
- ASP.NET MVC中jQuery与angularjs混合应用传参并绑定数据 2020-03-29
- Asp.Net中WebForm的生命周期 2020-03-29
- ASP.NET使用Ajax返回Json对象的方法 2020-03-23
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash