0
Hi Manoj,
Try this code in javascript function,
- var formdata = new FormData();
- var fileInput = document.getElementById('FileControl');
- var filename = fileInput.files[0].name
-
- for (i = 0; i < fileInput.files.length; i++) {
-
- formdata.append(fileInput.files[i].name, fileInput.files[i]);
- }
- formdata.append("FieldName", "fieldvalue");
- $.ajax({
- url: '/ControllerName/ActionName',
- type: 'POST',
- data: formdata,
- async: false,
- success: function (data) {
- if (data) {
- VTQIFileAttachment(0);
- }
- },
- cache: false,
- contentType: false,
- processData: false
- });
In controller
- public ActionResult InsertTicket()
- {
- HttpPostedFileBase file = Request.Files[0];
- var fieldName= Request.Form["FieldName"].ToString();
- string filename=file.FileName //save the file name in database
-
-
- return Json(true, JsonRequestBehavior.AllowGet);
- }
0
https://www.aspsnippets.com/Articles/Simple-File-Upload-example-in-ASPNet-MVC-Razor.aspx
http://www.c-sharpcorner.com/UploadFile/sourabh_mishra1/fileupload-in-Asp-Net-mvc/
https://www.mikesdotnetting.com/article/259/asp-net-mvc-5-with-ef-6-working-with-files