Answers for "how to get input type="file" from view to controller in mvc"

C#
1

mvc input type file

@using (Html.BeginForm("Action", "Controller", FormMethod.Post, new 
                                       { enctype = "multipart/form-data" }))
{
    @Html.TextBoxFor(m => m.File, new { type = "file" })
    @Html.ValidationMessageFor(m => m.File)
}
Posted by: Guest on April-21-2020

C# Answers by Framework

Browse Popular Code Answers by Language