---
title: "How to upload file in mvc 3.0?"  
description: "How to upload file in mvc 3.0?"  
author: "Anonymous User"  
published: 2015-05-18  
updated: 2015-05-18  
canonical: https://www.mindstick.com/forum/23236/how-to-upload-file-in-mvc-3-0  
category: "asp.net mvc"  
tags: ["mvc3", "file", "upload"]  
reading_time: 1 minute  

---

# How to upload file in mvc 3.0?

I want to [upload](https://www.mindstick.com/forum/12860/how-to-upload-file-asynchronously-using-generic-handler) [file in asp.net](https://www.mindstick.com/forum/158972/how-to-read-appsettings-values-from-a-json-file-in-asp-dot-net-core) mvc. How can I upload the file using [html input](https://www.mindstick.com/forum/157343/how-to-prevent-a-user-from-adding-same-character-over-and-over-in-html-input-box-using-javascript) file [control](https://www.mindstick.com/blog/197/asp-dot-net-repeater-control)?

## Replies

### Reply by Anonymous User

```
@using (Html.BeginForm("Index", "Home",
FormMethod.Post, new { enctype = "multipart/form-data" })){    <input type="file" name="file" />    <input type="submit" value="OK" />}//and then you would have
//a controller to handle the upload:public class HomeController : Controller{    // This action renders the form    public ActionResult Index()    {        return View();    }     // This action handles the form POST and the upload    [HttpPost]    public ActionResult Index(HttpPostedFileBase file)    {        // Verify that the user selected a file        if (file !=null && file.ContentLength > 0)         {            // extract only the fielname            var fileName = Path.GetFileName(file.FileName);            // store the file inside ~/App_Data/uploads folder            var path = Path.Combine(Server.MapPath("~/App_Data/uploads"), fileName);           
file.SaveAs(path);        }        // redirect back to the index action to show the form once again        return RedirectToAction("Index");       
    }}
```


---

Original Source: https://www.mindstick.com/forum/23236/how-to-upload-file-in-mvc-3-0

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
