Guest User

Untitled

a guest
Oct 23rd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public ActionResult SaveImage(HttpPostedFileBase file)
  2. {
  3. var path = "";
  4. if (file != null)
  5. {
  6. path = Path.Combine(Server.MapPath("~/Content/Images"), file.FileName);
  7. file.SaveAs(path);
  8. }
  9. return View();
  10. }
Add Comment
Please, Sign In to add comment