ASP.NET MVC图片上传

工具:ssi-uploader

    $('#id').ssi_uploader({
        url: 'path'
    });
public ActionResult path()
        {
            HttpPostedFileBase file = Request.Files[0];
            string savePath = AppDomain.CurrentDomain.BaseDirectory + ""+file.FileName;
            file.SaveAs(savePath);
        }
原文地址:https://www.cnblogs.com/xiaomen/p/6089309.html