tagged [download]
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...
- Modified
- 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...
- Modified
- 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
- Modified
- 18 Nov at 16:22
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...
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...
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...
- Modified
- 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...
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"; ...
- Modified
- 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 ...
- Modified
- 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: ``...
- Modified
- 10 Nov at 07:20
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
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...
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...
- Modified
- 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...
- Modified
- 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...
- Modified
- 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...
- Modified
- 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...
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 ...
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...
- Modified
- 30 Dec at 10:21
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...
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}
- Modified
- 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...
- Modified
- 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`...
- Modified
- 30 Jun at 11:8
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...