Compare Page Revisions
« Older Revision - Back to Page History - Current Revision
jquery.MultiFile.js
jquery.MultiFile.pack.js
<script>
Html.BeginForm
FormMethod.Post
class='multi'
<input type='file' />
<% using (Html.BeginForm("Maintain", "Claim", FormMethod.Post, new { enctype="multipart/form-data" })) {%> . . . <b>Select Documents and Images to Upload</b> <br /> <input type="file" name="uxFileUpload" class="multi" accept="gif|jpg|pdf|png" /> <ul class="reminder"> <li>Files selected for upload will be listed above.</li> <li>Click the "X" before any file to remove it from the list.</li> <li>Files will be uploaded when you click the [Save Changes and Upload Attachments] button below.</li> </ul> . . . <input type="submit" value="Save Changes and Upload Attachments" /> <% } %>
[HttpPost] public ActionResult Maintain(int id, ClaimViewModel viewModel) { if (ModelState.IsValid) { //Upload files string path = "~/upload/attachments/" + id.ToString(); List<string> files = HttpContext.Request.UploadFiles(path); //TODO: Save other data to the database } return View(viewModel); }
using
/// <summary> /// Uploads all the files in the Request object to the path specified /// </summary> /// <param name="request">Typically HttpContext.Request</param> /// <param name="virtualTargetPath">The path to upload the files to; e.g., /// "~/upload"</param> /// <returns>A list of the file names uploaded</returns> public static List<string> UploadFiles(this HttpRequestBase request, string virtualTargetPath) { List<string> result = new List<string>(); int imax = request.Files.Count - 1; string physicalTargetPath = HttpContext.Current.Server.MapPath(virtualTargetPath); for (int i = 0; i <= imax; i++) { HttpPostedFileBase file = request.Files[i]; if (!Directory.Exists(physicalTargetPath)) Directory.CreateDirectory(physicalTargetPath); string saveAsFileName = Path.Combine(physicalTargetPath, Path.GetFileName(file.FileName)); file.SaveAs(saveAsFileName); result.Add(file.FileName); } return result; }
ScrewTurn Wiki version 3.0.1.400. Some of the icons created by FamFamFam. Except where noted, all contents Copyright © 1999-2024, Patrick Jasinski.