復(fù)制代碼 代碼如下:
form action="/Home/Upload" enctype="multipart/form-data" id="form2" method="post">
input type="file" name="fileToUpload" id="fileToUpload2" multiple="multiple" />
input type="submit" value="submit" />
/form>
那在Asp.net MVC web application中,我們可以這么實(shí)現(xiàn):
復(fù)制代碼 代碼如下:
@using (Html.BeginForm("Upload", "Home", FormMethod.Post, new { enctype = "multipart/form-data", id = "form2" }))
{
label for="file">Upload Image:/label>
input type="file" name="fileToUpload" id="fileToUpload2" multiple="multiple" />
input type="submit" value="Upload Image by submit" />
}
假設(shè)這是一個(gè)HomeController下View, 即將提交到Upload的Action,看下面服務(wù)端的代碼:
復(fù)制代碼 代碼如下:
[HttpPost]
public ActionResult Upload(HttpPostedFileBase[] fileToUpload)
{
foreach (HttpPostedFileBase file in fileToUpload)
{
string path = System.IO.Path.Combine(Server.MapPath("~/App_Data"), System.IO.Path.GetFileName(file.FileName));
file.SaveAs(path);
}
ViewBag.Message = "File(s) uploaded successfully";
return RedirectToAction("Index");
}
好的,就這么簡(jiǎn)單。 這里我們把接收到文件存儲(chǔ)到App_Data文件夾中,然后返回Index的Action. 看下面圖片,我們能夠從文件選擇器選擇多張圖片:
關(guān)于HTML5這個(gè)特性在那些瀏覽器支持,您可以去這里查看。 您還可以查看W3C官方的文檔。我們?cè)贔ireFox 14.01下測(cè)試能過(guò)。
希望對(duì)您Web開(kāi)發(fā)有幫助。
您可能感興趣的文章:- ASP.NET MVC4 利用uploadify.js多文件上傳
- asp.net mvc 實(shí)現(xiàn)文件上傳帶進(jìn)度條的思路與方法
- ASP.NET MVC文件上傳教程(二)
- ASP.NET MVC 文件上傳教程(一)
- ASP.NET MVC5實(shí)現(xiàn)文件上傳與地址變化處理(5)
- asp.net中MVC借助Iframe實(shí)現(xiàn)無(wú)刷新上傳文件實(shí)例
- Asp.net實(shí)現(xiàn)MVC處理文件的上傳下載功能實(shí)例教程
- ASP.NET MVC處理文件上傳的小例子
- ASP.NET MVC HttpPostedFileBase文件上傳的實(shí)例代碼