こんにちは、私はMVC4に取り組んでいます。単一の画像ファイルをアップロードしました。それは宛先フォルダーに保存されますが、画像が 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 />
}
これを行うのを手伝っていただけますか?前もって感謝します。