工具: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);
        }

 

相关文章:

  • 2021-11-23
  • 2021-06-04
  • 2022-12-23
  • 2022-12-23
  • 2018-05-21
  • 2021-10-25
  • 2021-05-10
猜你喜欢
  • 2021-11-03
  • 2021-08-20
  • 2022-12-23
  • 2021-10-10
  • 2021-12-04
  • 2022-03-03
相关资源
相似解决方案