摘要: 一、文件上传控件1 2 二、文件上传的方法 1 protected string ExcelUpload() 2 { 3 string path = ""; 4 if (Request.Files.Count > 0) 5 { 6 HttpPostedFile file = Request.Files[0]; 7 //判断是否上传文件 8 if (file.ContentLength > 0) 9 ... 阅读全文
posted @ 2014-03-30 17:46 小码编匠 阅读(906) 评论(0) 推荐(0) 编辑