Asp.Net MVC3 上传文件问题

Asp.Net MVC3 上传文件问题,第1张

可以考虑一下以下代码:首先创建:一 创建表单

@using (Html.BeginForm("Index", "Home", FormMethod.Post, new { enctype = "multipart/form-data" })){<input type="file" name="file" /> <input type="submit" value="OK" />}

二旅巧尺 创拆高建controlle

public class HomeController : Controller{// This action renders the formpublic ActionResult Index(){return View() }// This action handles the form POST and the upload[HttpPost]public ActionResult Index(HttpPostedFileBase file){/宽乎/ Verify that the user selected a fileif (file != null &&file.ContentLength >0) {// extract only the fielnamevar fileName = Path.GetFileName(file.FileName) // store the file inside ~/App_Data/uploads foldervar path = Path.Combine(Server.MapPath("~/App_Data/uploads"), fileName) file.SaveAs(path) }// redirect back to the index action to show the form once againreturn RedirectToAction("Index") }}

设置文件上传的最大大小

系统环境:win8

开发环境:asp.net mvc

功能:文件上传

在上传文件时,比较小的文件会直接上传成功,大的文件页面报错贺嫌槐:“文件超过了最大请求长度”。

经过查明:

需要在配置文件里面设置文件上传限定的两个属性值者历:maxAllowedContentLength,maxRequestLength 允许上传文件的长度,和请求的长度,两个大小需要设置一致,如果不一致,则以请求长度为准。

The maximum request size in kilobytes. The default size is 4096 KB (4 MB). 默认请求长度只有4M. 设置的单位都为byte

<system.web>

<httpRuntime maxRequestLength="2147483647" executionTimeout="36000" delayNotificationTimeout="36000"/>

</system.web>

<system.webServer>

<security>

<requestFiltering>

<!--<requestLimits maxAllowedContentLength="1073741824"/>-->

<requestLimits maxAllowedContentLength="2147483648"/>

</requestFiltering>

</security>

</system.webServer>

以上是对某个站点或者某个应用上限制大小,配置的web.config

要以上配置有效的前提是,要确保applicationhost.config中对该禅友项修改的权限已经放开。

applicationhost.config文件路径在 C:\Windows\System32\inetsrv\config 下

可通过如下设置进行更改:

modify the overrideModeDefault from "Deny" to "Allow" like so:

<sectionGroup name="system.webServer">

<sectionGroup name="security">

<section name="requestFiltering" overrideModeDefault="Allow" />

</sectionGroup>

</sectionGroup>

确认修改过applicationhost.config中上述设置以后,再进行web.config中的设置。

二: 也可以直接设置服务器级别的文件上传大小,在applicationhost.config文件中加上以下字段

<system.webServer>

<security>

<requestFiltering>

<requestLimits maxAllowedContentLength="2147483647" />

</requestFiltering>

<security>

<system.webServer>

也可以使用命令模式修改:

也可以使用命令行模式修改applicationhost.config:

%windir%\system32\inetsrv\appcmd set config -section:requestFiltering -requestLimits.maxAllowedContentLength:2147483647

命令模式尚未试过。

html与服务器交互本质就是form提交,派差不用form服务器不可能得到数据。

$.ajax()里面构造form表单茄棚然后把file标签append到form中post提交。注意上传form的属性类型要加multi....data(忘记名字颤羡则了类似这个)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12246263.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-22
下一篇 2023-05-22

发表评论

登录后才能评论

评论列表(0条)

保存