asp.net MVC 간단한 업로드 기능 구현

1042 단어
방법1:
Home/Index.aspx의 코드
 
  





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");
}

방법2:
Home/Index.aspx의 코드
 
  
" enctype="multipart/form-data" method="post">



Homecontroller의 코드
 
  
public ActionResult upload2(HttpPostedFileBase up1)
{
up1.SaveAs("d:\\8.jpg");
return Content(up1.FileName);
}

좋은 웹페이지 즐겨찾기