2013年9月30日
摘要: public ActionResult DownAttachment(string dUrl, string fileName) { try { dUrl = HttpUtility.UrlDecode(dUrl); var bytes = new System.Net.WebClient().DownloadData(dUrl); Response.ContentType = "application/octet-stream"; ... 阅读全文
posted @ 2013-09-30 09:11 朝着 阅读(123) 评论(0) 推荐(0) 编辑