方法一:
Home/Index.aspx中的代码
代码如下:
<% using (Html.BeginForm("up","Home",FormMethod.Post,new{enctype="multipart/form-data"})) {%>
<input type="file" name="upfile" />
<input type ="submit" name ="upload" value ="上传" />
<%} %>
Homecontroller中的代码
[code]
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult up(HttpPostedFileBase upfile)
{
if (upfile != null)
{
if (upfile.ContentLength > 0)
{
upfile.SaveAs("d:\\7.jpg");
}
}
return RedirectToAction("Index");
}
方法二:
Home/Index.aspx中的代码
代码如下:
<form action="<%=Url.Action("upload2") %>" enctype="multipart/form-data" method="post">
<input name="up1" type="file" /><input type="submit" />
</form>
Homecontroller中的代码
代码如下:
public ActionResult upload2(HttpPostedFileBase up1)
{
up1.SaveAs("d:\\8.jpg");
return Content(up1.FileName);
}
您可能感兴趣的文章:SpringMVC文件上传 多文件上传实例Spring MVC中上传文件实例asp.net MVC实现无组件上传图片实例介绍Asp.net实现MVC处理文件的上传下载功能实例教程用Fine Uploader+ASP.NET MVC实现ajax文件上传[代码示例]用Html5与Asp.net MVC上传多个文件的实现代码SpringMVC上传图片与访问ASP.NET MVC5实现文件上传与地址变化处理(5)使用jQuery.form.js/springmvc框架实现文件上传功能mvc file控件无刷新异步上传操作源码
asp.net mvc
ASP.NET
MVC
net
ASP