转自百度知道 private void DownLoad(string strName, string strPath) { string fileName = strName;//客户端保存的文件名 string filePath = Server.MapPath(strPath);//路径 //以字符流的形式下载文件 FileStream fs = new FileStream(filePath, FileMode.Open); byte[] bytes = new... Read More
posted @ 2013-11-05 08:44 玉面麒麟 Views(2002) Comments(0) Diggs(0) Edit