Spójrz na poniższe
@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" />
}
Twój kontroler powinien mieć metodę akcji, która zaakceptowałaby 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");
}
Zaktualizuj 1
Jeśli chcesz przesyłać pliki za pomocą jQuery asynchronicznie, wypróbuj ten artykuł .
kod do obsługi po stronie serwera (do wielokrotnego przesyłania) to;
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;
}
ta kontrolka zwraca również nazwę obrazu (w wywołaniu zwrotnym javascript), którego następnie możesz użyć do wyświetlenia obrazu w DOM.
AKTUALIZACJA 2
Alternatywnie możesz wypróbować Async File Upload w MVC 4 .
Pro ASP MVC 4
doSportsStore Tutorial
tego,page 292