Hi I have class of EmployeeDocumentsTable
public class EmployeeDocumentsTable
{
public HttpPostedFileBase EmployeeDocumentFileName { get; set; }
// Other properties
}
in my view
@Html.TextBoxFor(model => model.EmployeeDocumentFileName, new { type = "file" })
The problem is when I post the form using submit button the property EmployeeDocumentFileName is null.