ASP.NET MVC图片上传

工具:ssi-uploader

    $('#id').ssi_uploader({
url: 'path'
});
public ActionResult path()
{
HttpPostedFileBase file = Request.Files[];
string savePath = AppDomain.CurrentDomain.BaseDirectory + ""+file.FileName;
file.SaveAs(savePath);
}
上一篇:日志入库-log4j-mysql连接中断问题


下一篇:python生成随机日期字符串