tagged [download]

How to make PDF file downloadable in HTML link?

How to make PDF file downloadable in HTML link? I am giving link of a pdf file on my web page for download, like below The problem is when user clicks on this link then - - But I want it always pop-up...

9 Feb at 10:22

Download pdf programmatically

Download pdf programmatically How can I download a PDF and store to disk using vb.NET or C#? The URL (of the PDF) has some rediection going on before the final PDF is reached. I tried the below but th...

2 Aug at 13:41

Download File Using JavaScript/jQuery

Download File Using JavaScript/jQuery I have a very similar requirement specified [here](https://stackoverflow.com/questions/1296085/download-file-using-jquery). I need to have the user's browser star...

24 Jun at 23:8

JavaScript blob filename without link

JavaScript blob filename without link How do you set the name of a blob file in JavaScript when force downloading it through `window.location`? Running the above code downloads a file in

How can you force the browser to download an xml file?

How can you force the browser to download an xml file? This is my problem. I load xml from my database and push it to the client using code. But the problem is that the browser automatically opens tha...

16 Dec at 07:56

Download a file with password and username with C#

Download a file with password and username with C# How would I write a script to download files from this site. Is it possible to supply the login and password with the url? [http://feeds.itunes.apple...

17 May at 02:43

C# WebClient acting slow the first time

C# WebClient acting slow the first time I am using a WebClient to download a string from a website (which just contains plain text, nothing else), so I use the DownloadString method: It works fine, bu...

28 Oct at 18:15

wget command to download a file and save as a different filename

wget command to download a file and save as a different filename I am downloading a file using the `wget` command. But when it downloads to my local machine, I want it to be saved as a different filen...

31 Mar at 12:4

Get image dimensions directly from URL in C#

Get image dimensions directly from URL in C# I'm trying to get dimensions from a picture directly from the web using this code: ``` string image = @"http://www.hephaestusproject.com/.../csharp3.png"; ...

7 Apr at 04:27

Download multiple files with a single action

Download multiple files with a single action I am not sure if this is possible using standard web technologies. I want the user to be able to download multiple files in a single action. That is click ...

26 Feb at 04:9

Download a file from NodeJS Server using Express

Download a file from NodeJS Server using Express How can I download a file that is in my server to my machine accessing a page in a nodeJS server? I'm using the ExpressJS and I've been trying this: ``...

How to download image from URL

How to download image from URL Is there a way to download an image directly from a url in c# if the url does not have an image format at the end of the link? Example of URL: I kno

2 Mar at 19:43

Why in my WebClient DownloadFileAsync method downloading an Empty File?

Why in my WebClient DownloadFileAsync method downloading an Empty File? I have this C# code but the final esi.zip results in 0 length or basically empty. The URL does exist and confirms to download th...

23 Oct at 19:17

How to provide a file download from a JSF backing bean?

How to provide a file download from a JSF backing bean? Is there any way of providing a file download from a JSF backing bean action method? I have tried a lot of things. Main problem is that I cannot...

12 May at 16:51

How can I let a user download multiple files when a button is clicked?

How can I let a user download multiple files when a button is clicked? So I have a httpd server running which has links to a bunch of files. Lets say the user selects three files from a file list to d...

26 Aug at 19:46

Download file from webservice - in ASP.NET site

Download file from webservice - in ASP.NET site I want to push a file to the browser from a website using a webservice. I'm currently reading the file into a base64 byte array, and returning that from...

10 Feb at 19:25

Create a CSV File for a user in PHP

Create a CSV File for a user in PHP I have data in a MySQL database. I am sending the user a URL to get their data out as a CSV file. I have the e-mailing of the link, MySQL query, etc. covered. How c...

23 Jan at 04:19

Download File to server from URL

Download File to server from URL Well, this one seems quite simple, and it is. All you have to do to download a file to your server is: Only there is one problem. What if you have a large file, like 1...

31 Mar at 14:17

How to change the timeout on a .NET WebClient object

How to change the timeout on a .NET WebClient object I am trying to download a client's data to my local machine (programatically) and their webserver is very, very slow which is causing a timeout in ...

24 Nov at 11:59

A multi-part/threaded downloader via python?

A multi-part/threaded downloader via python? I've seen a few threaded [downloaders](http://www.artfulcode.net/articles/multi-threading-python/) online, and even a few [multi-part downloaders](http://c...

Download file and automatically save it to folder

Download file and automatically save it to folder I'm trying to make a UI for downloading files from my site. The site have zip-files and these need to be downloaded to the directory entered by the us...

21 Jul at 09:47

Download a file by jQuery.Ajax

Download a file by jQuery.Ajax I have a Struts2 action in the server side for file downloading. ``` text/plain imageStream attachment;filename={fileName}

28 Dec at 13:48

Microsoft .NET 3.5 Full download

Microsoft .NET 3.5 Full download Although not a question directly associated with programming. One does sometimes need certain frameworks in your projects. I'm looking into downloading the .NET 3.5 fr...

1 Nov at 00:2

Python: download files from google drive using url

Python: download files from google drive using url I am trying to download files from google drive and all I have is the drive's URL. I have read about google API that talks about some `drive_service`...

How do I measure request and response times at once using cURL?

How do I measure request and response times at once using cURL? I have a web service that receives data in JSON format, processes the data, and then returns the result to the requester. I want to meas...

13 Aug at 17:27