다음을보세요
@using (Html.BeginForm("FileUpload", "Home", FormMethod.Post,
new { enctype = "multipart/form-data" }))
{
<label for="file">Upload Image:</label>
<input type="file" name="file" id="file" style="width: 100%;" />
<input type="submit" value="Upload" class="submit" />
}
컨트롤러에는 수락 할 액션 메서드가 있어야합니다 HttpPostedFileBase
.
public ActionResult FileUpload(HttpPostedFileBase file)
{
if (file != null)
{
string pic = System.IO.Path.GetFileName(file.FileName);
string path = System.IO.Path.Combine(
Server.MapPath("~/images/profile"), pic);
file.SaveAs(path);
using (MemoryStream ms = new MemoryStream())
{
file.InputStream.CopyTo(ms);
byte[] array = ms.GetBuffer();
}
}
return RedirectToAction("actionname", "controller name");
}
업데이트 1
비동기 적으로 jQuery를 사용하여 파일을 업로드하려면 이 기사 를 시도 하십시오. .
서버 측 (다중 업로드 용)을 처리하는 코드는 다음과 같습니다.
try
{
HttpFileCollection hfc = HttpContext.Current.Request.Files;
string path = "/content/files/contact/";
for (int i = 0; i < hfc.Count; i++)
{
HttpPostedFile hpf = hfc[i];
if (hpf.ContentLength > 0)
{
string fileName = "";
if (Request.Browser.Browser == "IE")
{
fileName = Path.GetFileName(hpf.FileName);
}
else
{
fileName = hpf.FileName;
}
string fullPathWithFileName = path + fileName;
hpf.SaveAs(Server.MapPath(fullPathWithFileName));
}
}
}
catch (Exception ex)
{
throw ex;
}
이 컨트롤은 또한 이미지 이름 (JavaScript 콜백에서)을 반환 한 다음이를 사용하여 DOM에 이미지를 표시 할 수 있습니다.
업데이트 2
또는 MVC 4에서 비동기 파일 업로드를 시도 할 수 있습니다 .
Pro ASP MVC 4
는SportsStore Tutorial
에이 시작 포함하고 있는가page 292