0
大家好我正在使用MVC4。我上傳了一個圖像文件,它保存在目標文件夾中,但現在我需要一個循環,以便圖像保存超過100次。如何多次上傳單個圖像(超過100次)?
這裏是我的代碼,
這是我的控制器:
[HttpPost]
public ActionResult Uploading(ImageModel model)
{
if (ModelState.IsValid)
{
string fileName = Guid.NewGuid().ToString();
string serverPath = Server.MapPath("~");
string imagesPath = serverPath + "Content\\Images\\";
string thumsise = Path.Combine(imagesPath, "Thumb" + fileName);
ImageModel.ResizeAndSave(thumsise, fileName, model.ImageUploaded.InputStream, 80, true);
}
return View("Upload",model);
}
,這是我的索引頁:
@using (Html.BeginForm("Uploading", "Upload", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
<input type="file" name="ImageUploaded" id="btnUpload" multiple="multiple" accept="image/*" />
<button type="submit" id="Upload">Upload</button>
<br />
}
能否請你幫我做到這一點?提前致謝。
你爲什麼要保存相同的圖像100倍? – dove
實際上需要找到循環需要的時間 –
時間爲1或100個循環?仍然不明白爲什麼你需要一個100 – dove