日期:2011-10-05 浏览次数:20550 次
VB.net:
Dim filename As String = "a.txt"
If filename <> "" Then
Dim path As String = Server.MapPath(filename)
Dim file As System.IO.FileInfo = New System.IO.FileInfo(path)
If file.Exists Then
Response.Clear()
Response.AddHeader("Content-Disposition", "attachment; filename=" + file.Name)
Response.AddHeader("Content-Length", file.Length.ToString())
Response.ContentType = "application/octet-stream"
Response.Filter.Close()
Response.WriteFile(file.FullName)
Response.End()
Else
Response.Write("This file does not exist.")
End If
End If
----------------------------------------------------------------
c#:
string filename = "a.txt";
if (filename != "")
{
string path = Server.MapPath(filename);
System.IO.FileInfo file = new System.IO.FileInfo(path);
if (file.Exists)
{
Response.Clear();
Response.AddHeader("Content-Disposition", "attachment; filename=" + file.Name);
Response.AddHeader("Content-Length", file.Length.ToString());
Response.ContentType = "application/octet-stream";
Response.Filter.Close();
Response.WriteFile(file.FullName);
Response.End();
}
else
&nbs