From File path to HttpPostedFileBase in MVC

618 Views Asked by At

In My project i have file upload control. After save the file path i need to get file path and create HttpPostedFileBase object and assign in model. So I tried like this .

View

<div class="col-sm-3" style="margin-top:1%;">
      @Html.TextBoxFor(m => m.file_regn_no_upload, 
      new { @class = "form-control form-control-sm",@type="file" })
</div>

Controller

FileStream xfileStream = new FileStream(xvehicle_code.regn_no_upload, FileMode.Open);
string mimeType = MimeMapping.GetMimeMapping(xvehicle_code.regn_no_upload);
fileImage = new Class.MemoryFile(xfileStream, mimeType, Path.GetFileName(xvehicle_code.regn_no_upload));
xvehicle_code.file_regn_no_upload = fileImage;

Model

public HttpPostedFileBase file_regn_no_upload { get; set; }

How can i show the file upload with values. am using MVC5 VS2017

0

There are 0 best solutions below