Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to Upload a file in ASP.NET MVC

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 283
    Comment on it

    The following post captures the implementation details for uploading file in ASP.NET MVC. First we need to create HTML form which would receive the file as input:

    1. @using (Html.BeginForm("Index", "Home", FormMethod.Post, new { enctype = "multipart/form-data" }))
    2. {
    3. <in put type="file" name="file" />
    4. <in put type="submit" value="OK" />
    5. }

    Now, we create action for file upload, below is the code:

    1. [HttpPost]
    2. public ActionResult Index(HttpPostedFileBase file)
    3. {
    4. // Verify that the user selected a file
    5. if (file != null && file.ContentLength > 0)
    6. {
    7. var name = Path.GetFileName(file.FileName);
    8. var path = Path.Combine(Server.MapPath("~/uploads"), name);
    9. file.SaveAs(path);
    10. }
    11.  
    12. }

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: