Member 12068587 Ответов: 1

Я хочу загрузить файл в ASP. NET-MVC и angularjs. Как я могу загрузить файл с помощью HTML input file control?


I want to upload file in asp.net-mvc And AngularJS. How can I upload the file using html input file control?


Что я уже пробовал:

@using (Html.BeginForm("Index", "Home", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
    <input type="file" name="file" />
    <input type="submit" value="OK" />
}

F-ES Sitecore

Google "upload file mvc" или "upload file angularjs", и вы найдете множество примеров.

1 Ответов

Рейтинг:
7

Satya Prakash Swain

@using(Html.BeginForm("UploadFile","Upload", FormMethod.Post, new { enctype="multipart/form-data"}))  
{  
      
    <div>  
        @Html.TextBox("file", "", new {  type= "file"}) <br />  
   
        <input type="submit" value="Upload" />  
   
    </div>  
      
      
}