mvc 에서 file upload (파일 업로드)
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
http://stackoverflow.com/questions/15680629/mvc-4-razor-file-upload
<input type="file" name="file" />
Also, you could find the files in Request.Files
:
[HttpPost]
public ActionResult Upload()
{
if (Request.Files.Count > 0)
{
var file = Request.Files[0];
if (file != null && file.ContentLength > 0)
{
var fileName = Path.GetFileName(file.FileName);
var path = Path.Combine(Server.MapPath("~/Images/"), fileName);
file.SaveAs(path);
}
}
return RedirectToAction("UploadDocument");
}
'Web > ASP.NET MVC' 카테고리의 다른 글
System.Web.WebPages.Razor.Configuration.HostSection (4) | 2015.12.23 |
---|---|
[ASP.net] MVC에서 엑셀 출력하기 1 (8) | 2015.04.28 |
MVC 에서 엑셀 출력 (10) | 2015.04.28 |
[.net MVC] 날짜 (DateTime 계산 및 날짜만 추출 (10) | 2015.04.28 |
[asp.net] 데이터 삭제후에 MVC에서 페이지 reload 하기 (2) | 2015.04.27 |