이 글에서는 서버 파일을 로컬로 다운로드하는 asp.net 방법을 주로 소개합니다. 필요한 친구들은 참고하시면 됩니다
1. 지침
지정된 로컬로 파일을 다운로드하세요. 위치. 여기에서 서버 파일 경로를 지정해야 합니다.
//服务器文件路径 string strFilePath = Server.MapPath("~") + "/excel/20170206104654.xlsx"; FileInfo fileInfo = new FileInfo(strFilePath); 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(strFilePath);
위 내용은 다음과 같습니다. by the editor asp.net에서 서버 파일을 로컬로 다운로드하는 방법을 소개했는데, 궁금한 점이 있으시면 메시지를 남겨주시면 편집자가 제 시간에 답변해 드리겠습니다. 또한 PHP 중국어 웹사이트를 지원해 주신 모든 분들께 감사드립니다!
서버 파일을 로컬로 다운로드하는 방법에 대한 asp.net 관련 기사를 더 보려면 PHP 중국어 웹사이트를 주목하세요!