In this example i'm explaining how to Download Files From Server In Asp.Net and display Save As dialog box when a hyperlink is clicked on the site.
I have created a folder on server and stored some sample files to download.
First we need to write code to display names of all the files saved in Files folder as hyperlinks so that user can download these files.
You can read to know how to Save Files In Sql Database And Download From GridView In Asp.Net
Write below mentioned code in Page_Load event of page where you want to display all the links with file names.
Add a new web form Default2.aspx in the soulution and write code mentioned below in Page_Load Event.
Build and run the code.
I have created a folder on server and stored some sample files to download.
First we need to write code to display names of all the files saved in Files folder as hyperlinks so that user can download these files.
You can read to know how to Save Files In Sql Database And Download From GridView In Asp.Net
Write below mentioned code in Page_Load event of page where you want to display all the links with file names.
C# CODE
01
protected
void
Page_Load(
object
sender, EventArgs e)
02
{
03
DirectoryInfo directory =
new
DirectoryInfo(Server.MapPath(
"~/Files"
));
04
int
counter = 0;
05
foreach
(FileInfo file
in
directory.GetFiles())
06
{
07
HyperLink link =
new
HyperLink();
08
link.ID =
"Link"
+ counter++;
09
link.Text = file.Name;
10
link.NavigateUrl =
"Default2.aspx?name="
+file.Name;
11
12
Page.Controls.Add(link);
13
Page.Controls.Add(
new
LiteralControl(
"<br/>"
));
14
}
15
}
VB.NET CODE
01
Protected
Sub
Page_Load(sender
As
Object
, e
As
EventArgs)
02
Dim
directory
As
New
DirectoryInfo(Server.MapPath(
"~/Files"
))
03
Dim
counter
As
Integer
= 0
04
For
Each
file
As
FileInfo
In
directory.GetFiles()
05
Dim
link
As
New
HyperLink()
06
link.ID =
"Link"
& System.Math.Max(System.Threading.Interlocked.Increment(counter),counter - 1)
07
link.Text = file.Name
08
link.NavigateUrl =
"Default2.aspx?name="
+ file.Name
09
10
Page.Controls.Add(link)
11
Page.Controls.Add(
New
LiteralControl(
"<br/>"
))
12
Next
13
End
Sub
Add a new web form Default2.aspx in the soulution and write code mentioned below in Page_Load Event.
C# CODE
1
protected
void
Page_Load(
object
sender, EventArgs e)
2
{
3
string
fileName = Request.QueryString[
"name"
].ToString();
4
Response.ContentType =
"application/octet-stream"
;
5
Response.AddHeader(
"Content-Disposition"
,
"attachment;filename="
+ fileName);
6
Response.TransmitFile(Server.MapPath(
"~/Files/"
+ fileName));
7
Response.End();
8
}
VB.NET CODE
1
Protected
Sub
Page_Load(sender
As
Object
, e
As
EventArgs)
2
Dim
fileName
As
String
= Request.QueryString(
"name"
).ToString()
3
Response.ContentType =
"application/octet-stream"
4
Response.AddHeader(
"Content-Disposition"
,
"attachment;filename="
& fileName)
5
Response.TransmitFile(Server.MapPath(
"~/Files/"
& fileName))
6
Response.[
End
]()
7
End
Sub
Build and run the code.
If you like this post than join us or share
5 comments:
This comment has been removed by a blog administrator.
Thank you very much for the this code. Could you please let us know how to go about when there are multiple sub folders inside the main folder. Would it be possible to display the sub folders and navigate through them to download the files inside them.
@Sathyan: Please refer Display Files and Directories from server
hello
i want to move attached file path into database, and into another page as hyperlink to open it , how can i do that ???
Try this example:
public void TheDownload(string path)
{
System.IO.FileInfo toDownload = new System.IO.FileInfo(HttpContext.Current.Server.MapPath(path));
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.AddHeader("Content-Disposition",
"attachment; filename=" + toDownload.Name);
HttpContext.Current.Response.AddHeader("Content-Length",
toDownload.Length.ToString());
HttpContext.Current.Response.ContentType = "application/octet-stream";
HttpContext.Current.Response.WriteFile(patch);
HttpContext.Current.Response.End();
}
The implementation is done in the follows:
TheDownload("@"c:\Temporal\Test.txt"");
Source: http://www.systemdeveloper.info/2014/03/force-downloading-file-from-c.html
Post a Comment