给你提供一点代码:
string fileURL = this.Server.MapPath("你要下载的文件路径")//文件路径,可用相对路径
FileInfo fileInfo = new FileInfo(fileURL)
Response.Clear()
Response.AddHeader("content-disposition", "attachmentfilename=" +
Server.UrlEncode(fileInfo.Name.ToString()))//文件名
Response.AddHeader("content-length", fileInfo.Length.ToString())//文件大小
Response.ContentType = "application/octet-stream"
Response.ContentEncoding = System.Text.Encoding.Default
Response.WriteFile(fileURL)
Response.AddHeader("Content-Disposition", "attachmentfilename=" + backupath + "")Response.TransmitFile(backupath)//下载文件,backupath是你服务器上文件地址
d出下载框就可以选择下载位置
你这个是写数据流呀~~~你要保证所有的机器都是直接打开的话你得去安装一个OFFICE插件,然后用的是ASP.NET读取EXCEL文件的方式,而不是下载文件的方式去打开。直接可以在页面里获取EXCEL的值。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)