I\'d like to save an uploaded file to a physical path by the method HttpPostedFileBase.SaveAs().
HttpPostedFileBase.SaveAs()
When I choose a physical path, an exception appears ind
Server.MapPath is for virtual path. You can try to use Path.GetFullPath(path).