摘要: public ActionResult upload2() { try { HttpFileCollectionBase files = Request.Files; for (int iFile = 0; iFile files.Count; iFile++) { HttpPostedFileBase postedFile = files[iFile]; string fileName = System.IO.Path.GetFileName(postedFile.FileName); if (!string.IsNullOrEmpty(fileName)) { postedFile.Sav 阅读全文
posted @ 2009-12-10 14:31 肚肚 阅读(560) 评论(0) 推荐(0) 编辑