Posted on: 5/8/2014 1:31:38 PM | Views : 410

Hello Experts,
Hope you all doing good.
I have been trying to download some mp3 files from  urls (http://103.344.333.123/xyz/asdf.mp3).Which is working fine by using simply response.redirect i am able to download them individualy.But suppose i have a datatable which containts the urls.I need to save them as a pdf and let the user download them.I can zip the file by below codes but the source is from local system NOT from URL.So how can i achieve that .. please help.
public void CreateZIP() { Response.ContentType = "application/zip"; Response.Clear(); Response.AppendHeader("content-disposition", "attachment;filename=DownloadRecordings.zip"); // Code to Zip a Folder. string sPath = @"C:\Users\Ashim\Documents\mp3\"; //string zipFullPath = @"C:\Users\Ashim\Documents\out\DocumentFolder.zip"; ...

Go to the complete details ...