AjaxFileUpload代码Demo 在.net mvc下使用

时间:2022-04-24 12:50:27
【文件属性】:
文件名称:AjaxFileUpload代码Demo 在.net mvc下使用
文件大小:416KB
文件格式:RAR
更新时间:2022-04-24 12:50:27
MVCAJA AjaxFileUpload代码Demo 在.net mvc下使用源代码 public ActionResult Upload() { NameValueCollection nvc = System.Web.HttpContext.Current.Request.Form; HttpFileCollection hfc = System.Web.HttpContext.Current.Request.Files; string imgPath = ""; if (hfc.Count > 0) { imgPath = "/testUpload" + hfc[0].FileName; string PhysicalPath = Server.MapPath(imgPath); hfc[0].SaveAs(PhysicalPath); } //注意要写好后面的第二第三个参数 return Json(new { Id = nvc.Get("Id"), name = nvc.Get("name"), imgPath1 = imgPath },"text/html", JsonRequestBehavior.AllowGet); }

网友评论