How to DownLoad a file of any format(like .pdf, .doc etc.) which is stored in database in byte format
-
hi all How to DownLoad a file of any format(like .pdf, .doc etc.) which is stored in database in byte format thanks in advance...
Amit Metkar 3i-infotech, Mumbai.
-
hi all How to DownLoad a file of any format(like .pdf, .doc etc.) which is stored in database in byte format thanks in advance...
Amit Metkar 3i-infotech, Mumbai.
Simple. Get the bytes from the database, and save it as a file with proper file extension.
[Venkatesh Mookkan] My: Website | Yahoo Group | Blog Spot
-
Simple. Get the bytes from the database, and save it as a file with proper file extension.
[Venkatesh Mookkan] My: Website | Yahoo Group | Blog Spot
but how do i....? i dont know the file format... thanx for the reply..
Amit Metkar 3i-infotech, Mumbai.
-
Simple. Get the bytes from the database, and save it as a file with proper file extension.
[Venkatesh Mookkan] My: Website | Yahoo Group | Blog Spot
Thanks a lot...
Amit Metkar 3i-infotech, Mumbai.
-
hi all How to DownLoad a file of any format(like .pdf, .doc etc.) which is stored in database in byte format thanks in advance...
Amit Metkar 3i-infotech, Mumbai.
Software Development How to Download any file from ASP.NET You know, some formats (txt, gif etc.) will be shown on the browser rather than downloading when we try. Below is the script which will help you to download any file. <!--[if !supportLineBreakNewLine]--> <!--[endif]--> Response.Clear(); Response.AddHeader(“Content-disposition”, “attachment; filename=”); Response.WriteFile(“C:\”); Response.End();
modified on Thursday, February 21, 2008 1:27 PM