HttpResponse.WriteFile Method (String, Int64, Int64)
.NET Framework 3.0
Writes the specified file directly to an HTTP response output stream.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public void WriteFile ( String filename, long offset, long size )
public function WriteFile ( filename : String, offset : long, size : long )
Not applicable.
Parameters
- filename
The name of the file to write to the HTTP output stream.
- offset
The byte position in the file where writing will start.
- size
The number of bytes to write to the output stream.
When this method is used with large files, calling the method might result in an exception. The size of the file that can be used with this method depends on the hardware configuration of the Web server. For more information, see article 812406, "PRB: Response.WriteFile Cannot Download a Large File" in the Microsoft Knowledge Base.
The following example writes the entire contents of a text file named "login.txt" (which might contain literal text and HTML input controls) directly to the output stream.
String fileName;
FileInfo myFileInfo;
long startPos = 0;
long fileSize;
fileName = "c:\\temp\\login.txt";
myFileInfo = new FileInfo(fileName);
fileSize = myFileInfo.get_Length();
get_Response().Write("Please Login: <br>");
get_Response().WriteFile(fileName, startPos, fileSize);
var fileName : String var myFileInfo : FileInfo var startPos : long = 0 var fileSize : long fileName = "c:\\temp\\login.txt" myFileInfo = new FileInfo(fileName) fileSize = myFileInfo.Length Response.Write("Please Login: <br>") Response.WriteFile(fileName, startPos, fileSize)
Community Additions
ADD
Show: