用ASPNET怎么写文件上传和下载的代码啊?
string fileURL = this.Server.MapPath("你要下载的文件路径")
;//文件路径,可用相对路径FileInfo fileInfo = new FileInfo(fileURL)
;Response.Clear()
;Response.AddHeader("content-disposition", "attachment;filename=" + 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);
Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有