下载的开发
哪位好心人能提供一个关于用ASP.NET开发下载的例子?多谢了! --------------------编程问答-------------------- 网上搜搜,一大堆。 --------------------编程问答-------------------- 文件下载?Response.Clear();
Response.ClearHeaders();
Response.Buffer = true;
this.EnableViewState = false;
Response.ContentType = "application/octet-stream";
Response.AppendHeader("Content-Disposition", "attachment;filename=" + strFileName);
// strFileName文件名称
Response.WriteFile(strFilePath,true);//strFilePath文件路径
Response.Flush();
Response.Close();
Response.End(); --------------------编程问答-------------------- strFileName编码下好点 不然中文出问题 --------------------编程问答-------------------- 大文件用TransmitFile,不使用托管内存.
补充:.NET技术 , ASP.NET