Web Forms :: Download Selected Files As Zip Archive

Jun 28, 2013

i want to download selected file in a zip and it work but problem is it include all folder and i want add only one folder which is the name of that movie.

 i have used the code 

protected void btnDownload_Click(object sender, EventArgs e) { using (ZipFile zip = new ZipFile()) { foreach (GridViewRow gvrow in GridView1.Rows) { CheckBox chk = (CheckBox)gvrow.FindControl("chkSelect"); if (chk.Checked) {

string filePath = Server.MapPath(gvrow.Cells[2].Text); zip.AddFile(filePath); } } Response.Clear(); Random r = new Random(); Response.AddHeader("content-disposition", "filename=" + "download" + r.Next(100, 1000).ToString() + ".zip"); // Response.AddHeader("Content-Disposition", "attachment; filename=DownloadedFile.zip"); Response.ContentType = "application/zip"; zip.Save(Response.OutputStream); Response.End(); }

and in the zip has all folder whatever has in my project.i want only files inside zip and don't want any folder .

View 1 Replies


Similar Messages:

How To Provide The Option For A User To Download A Zipped Archive Of Every Mp3

Apr 19, 2010

I have a folder on my web server that has hundreds of mp3 files in it. I would like to provide the option for a user to download a zipped archive of every mp3 in the directory from a web page.

I want to compress the files programmatically only when needed. Because the zip file will be quite large, I am thinking that I will need to send the zip file to the response stream as it is being zipped, for performance reasons.

View 3 Replies

Web Forms :: Download PDF And Doc Files In Browser

Mar 16, 2010

I am developing a application similar to a forum. I want to attach documents in .doc and .PDF formats. I want to know how could i download these attachments and open directly in a browser without saving the downloaded document.

View 2 Replies

Web Forms :: How To Force Mp3 Files To Download

Apr 18, 2010

i m giving file link to be downloaded in navigateurl of hyperlink .

It works fine in my pc but doesnt works in my laptop.

Is there any browser setting to show open/save dialog box .

View 3 Replies

Web Forms :: How To View And Download All The Files Except .msg

Jan 28, 2010

I developed a datagrid in my aspx page which was to show all the files present (with details) in a particular directory on my webserver. The column containing the name of the file in the datagrid is a hyperlink and when you click on it you could view or download the file.

Everything works great. When I click on the file name, it either opens up the file in browser or asks me to save it except the fact that when I click on a file name with extension .msg (outlook message file) it says - The Page Cannot be found

The page you are looking for might have been removed, had its name changed, or is temporarily unavailable..

The files are very well present there in the directory! Moreover, same everything was working absolutely fine (even the .msg messages) in my local system during the application development.

I dont know if sending the code makes sense in this situation - because code is correct and is working as it should be. It looks more of an issue with internet explorer or probably somerthing with Production web server configuration.

Anyways the code for aspx and .cs files are -

ASPX - PAGE CODE

<asp:DataGrid runat="server" id="articleList" Font-Name="Verdana"

View 2 Replies

Web Forms :: How To Upload And Download RAR And ZIP Files

Aug 20, 2012

i want upload zip and rar file to server and download it and audio and video file also.

View 1 Replies

Web Forms :: Download Multiple Files As Zip

Nov 18, 2013

I have some documents in a folder ..i am creating zip file using the following code..but i am not able to download it at client side.
 
Imports ICSharpCode.SharpZipLib.Zip
Imports ICSharpCode.SharpZipLib.Core
Public Function ByteArrayToFile(_FileName As String, _ByteArray As Byte()) As Boolean
Try

[code]....

View 1 Replies

Web Forms :: How To Add Mp3 Files To Site And Charge Per Download

May 5, 2010

I am running asp storefront version 9. I am creating a website that offers audio therapy to people. I want to make it so they have an option to preview a clip of the audio (maybe 30 secs). Then also have an option to pay for the audio file then download it from the site.

I am not sure of the best way to go about this. Right now I have each product set up as a generic product calling xml package .product.simpleproduct.xml.config.(I just set it up)

Is there a way to have the two options (preview or buy) for each product right on the product page?

View 1 Replies

Web Forms :: Can't Download Files Stored In Database

Feb 17, 2011

I have a web application that allows users to upload files which are stored in a database. Users can then search for files and click a link to download them. Clicking the link opens a new window which retrieves the file from the database and offers the user the chance to open the file or save it.

All of the users within our organisation use IE 6, yet while some can click a link and download the file, others can't. The new window simply opens for a split second, then closes. If it was all users I would think it might be the application, but as it is only some I am tempted to think it is a browser issue.

View 2 Replies

Web Forms :: How To Upload And Download Resume (CV) Files

Aug 2, 2013

I want asp.net code for uploading and downloading word file in a website...

View 1 Replies

Forms Data Controls :: Way To Download Files Using GridView

Apr 9, 2010

i store a file name in column like(1.dat).when i try to download this actually from the folder which is in solution exploer ... but i dont understnd how to download it through its name ...i use some code

View 2 Replies

Web Forms :: How To Upload And Download Files From Remote Servers Without Using FTP

Sep 14, 2010

Can we upload and download files from remote servers through code without using FTP?

View 2 Replies

Web Forms :: Let User Download A Folder Containing Multiple Files?

Nov 3, 2010

I am working with Microsoft web developer 2008 Express (asp.net) and coding in VB.

I have coded a routine that creates a series of excel files in a folder called "SaveExcelFiles". This routine works fine. What I now want to do is to create a routine that will let my user download (copy) the entire folder to his PC. I do not want to have the user have to download each excel file separately if this can be avoided. Also I would like to have a routine that deletes all of the excel files in the folder.

View 4 Replies

Web Forms :: Upload And Download Multiple Files From Folder

Jan 26, 2014

How to Upload multiple files from folder and then Download uploaded multiple files from folder without using Gridview in ASP.NET c#.

View 1 Replies

Web Forms :: Data Archive In Application

Aug 20, 2010

I am developing a web application for daily news service but can't understand how to make a news archive system so that I can submit new news everyday and then later can view news for selected date. For a reference site visit: [URL] I am Using VS 2008, C#

View 5 Replies

Web Forms :: Can't Download Large Files From Internally Written Site

Feb 1, 2010

I've recently been given the task of diagnosing and fixing an internally written asp site that is used to transfer large files internally and externally.

The user uploads a file and enters the receivers email address. The receiver can then click on the link which takes them to the retrieval section of the site.

The issue is although we currently have an upload limit of 100MB set within the web.config file "maxRequestLength=102400", when a user uploads a file of more than 60MB although the upload works and the file is copied to the server when the receiver tries to access it the page simply displays "Internet Explorer cannot display this page".

The site works fine for files that are smaller than 60MB so I don't think it's a code issue, but I can't be 100% certain.

View 11 Replies

Web Forms :: Treeview Node To Add Onclick Event To Download Files?

Sep 10, 2010

I would like to know how to add onclick evend to a TreeNode so that the file can be downloaded. How can I implement below sample code to a TreeNode?

<a
href="#"
onclick="popup('/directory1/Somefile.doc'); return false;"
target="download"> Somefile
</a>

[Code]....

View 2 Replies

Forms Data Controls :: Upload & Download Files (pdf / Doc) In GridView?

Feb 13, 2010

i just want to create one colum in gridview where in the edit view i can upload the file and in the after the uploading the download links comes for download is it possible ?

or

just tell me the girdview colums get files for download from particular /download folder ?

View 4 Replies

Forms Data Controls :: Download And Save Files Using A Datagrid?

Dec 8, 2010

I have a paper search facility, the results are displayed in a datagrid and what I want to do is have checkboxes for each record (which I've done) and then a button to download the selected papers.

View 1 Replies

Web Forms :: Hide Download Folder Location When Downloading Files

May 22, 2012

I want to secure folder of my website   for example if some one do [URL] then it is giving access to mayur.doc which is in templocation folder of my website

View 1 Replies

Forms Data Controls :: How To Download Files From A Grid View Record

Nov 10, 2010

I have a grid view that I made dynamically based on a data table. The fields that are displayed on the grid view are as follows:

File Name
File TyPe
Uploaded On

Where as the data table on which this grid is based contains one extra filed that is

FileContents,

This filed contains the contents of the file in binary format retrieved from the data base.

Now I wanted to download the file say by clicking on the file name on the grid or even I an agree to add a Download button to the grid that will download the relevant file.

View 2 Replies

Web Forms :: User Can Download Files From Database Instead Of Physical Location On The Web Server?

May 3, 2010

we have some files in our web app which saved in database.

how user can download files from our web site which exists in database (and not physically saved) ?

View 3 Replies

Web Forms ::specific Privileges Required To Upload And Download Files From An ASP.Net Page?

Feb 28, 2011

What are specific privileges required to upload and download files from an ASP.Net page?I am using .Net 3.5 with IIS 7.0Prior to upload/download, how do I check whether specific folder has specific privileges to upload/download filesThis was so easy in classic ASP, but it seems too tricky in ASP.Net

View 1 Replies

Web Forms :: Display Files From SQL Server Database In GridView With Download Option

Apr 22, 2012

how to upload file in asp.net using c# with respect to grid view as when i upload file.. den using grid view i can view all d information n get a option to download dat uploaded file from gridview....

View 1 Replies

Web Forms :: Download Multiple Files And Store Them In Client Machine Folder Or Directory

Jul 16, 2013

Download multiple file from server and stored in client browse directory.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved