查看文章 |
B/S中窗体式下载服务器文件
2008-04-15 20:00
string DownloadFilePath = downloadfilepath ;//下载文件在服务器中的路径 ; Response.Clear(); Response.ContentType = "application/octet-stream"; Response.AddHeader("Content-Disposition", "attachment; filename=file.txt" ); Response.Flush(); Response.WriteFile(DownloadFilePath); Response.End(); |
最近读者: