如何上传图像以进入ASP.NET MVC 3.0中的~/Content/Images
?
答案 0 :(得分:1)
HTML上传文件ASP MVC 3。
模型 :( 请注意,FileExtensionsAttribute在MvcFutures中可用。它将验证文件扩展名客户端和服务器端。)
public class ViewModel
{
[Required, Microsoft.Web.Mvc.FileExtensions(Extensions = "csv", ErrorMessage = "Specify a CSV file. (Comma-separated values)")]
public HttpPostedFileBase File { get; set; }
}
HTML查看:
@using (Html.BeginForm("Action", "Controller", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
@Html.TextBoxFor(m => m.File, new { type = "file" })
@Html.ValidationMessageFor(m => m.File)
}
控制器操作:
[HttpPost]
public ActionResult Action(ViewModel model)
{
if (ModelState.IsValid)
{
// Use your file here
using (MemoryStream memoryStream = new MemoryStream())
{
model.File.InputStream.CopyTo(memoryStream);
}
}
}
答案 1 :(得分:0)
如果要在ASP.NET MVC中上传图像,请尝试以下问题:
如果您想使用ASP.NET控件上传图像,则会破坏MVC关注点的分离。有upload helpers available。