摘要: 在Control 中: public ActionResult ImportExcel() { return View(); } //客户导入 [HttpPost] public ActionResult ImportExcel(HttpPostedFileBase importxls) { //获取文件和扩展名 var fileName = Path.GetFileName(importxls.FileName); /... 阅读全文
posted @ 2013-12-03 18:46 代码沉思者 阅读(240) 评论(0) 推荐(0) 编辑