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
Similar Messages:
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
Jul 16, 2013
Download multiple file from server and stored in client browse directory.
View 1 Replies
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
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
Mar 31, 2011
Im developing a web app using MVC, for part of my app the user clicks a link which causes a file to be generated server side and then downloaded to the clients local machine. I can do this by returning a FilePathResult form the controller but the file will only download to the browsers default download folder.Is there a way I can force this file to download to a diferent folder?Preferably I would like to add a set folder location in the application settings (the app will run on an intranet, with all machines setup exaclty the same, so the folder location not existing is not a problem). If this is not possible then I would at least like to display a dialog on the client where they can select the location to download the file too.
View 4 Replies
Sep 18, 2012
I was watching the page [URL] .... and its great , but I would like to use the example but i need a textboxt to input the folder that i want to use to save the images
destination folder: upload/
<input id="Text1" type="text" value="my folder" /><br />
<a href="javascript:$('#<%=FileUpload1.ClientID%>').fileUploadStart()"
style="font-family: Arial; font-size: medium; color: #008000;">Start Upload</a>
| <a
href="javascript:$('#<%=FileUpload1.ClientID%>').fileUploadClearQueue()"
[Code] .....
View 1 Replies
Dec 16, 2010
am able to download single files which is coming as bytes from database..how to go with multiple files....
View 4 Replies
Nov 18, 2010
We need to download multiple files from remote servers. It is a process that would take few hours to complete, since we are talking about images ~50kb each and more than 250.000 in total. Each images will downloaded, resized and then imported to SQL.DB, so we do not need to write files to the disk. Also the applications need to use network credentials, since it is behind ISA.
From your experience, what is the best method to implement this? Should we use WebClient or HttpSockets? Should we use Async methods or Threads ? How can we implement for example 5 simultaneously download to achieve better speed, since we may getting files from many different servers at once?
View 2 Replies
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
Jun 14, 2010
I am creating a website using ASP.NET (C#) using FTP
problem:
I have assigned a folder with a storage space let say 1GB to a user now what i want is to keep track of the storage space ulitilized by the user. for eg if a user saves/deletes a file in his folder, how to know that user has saved/deleted something to/from his folder.
View 3 Replies
Aug 31, 2011
Is it possible to take 10 (or more or less) pdf files in a directory and merge them into a single PDF file to display to the user? Obviously I would prefer to not pay for something if I don't have to
I'm working in ASP.NET 4.0 with C# in the code behind.
View 3 Replies
Jul 16, 2010
I want to create a folder (titled their userid) for each user for Images they upload. I also want to name their files as their username + 1 or 2 or 3... whatever number of images they have.
Here is what I've done:
[Code]....
View 7 Replies
Oct 21, 2015
how to download selected files from grid view. Initial I will display list of files with file paths in grid view along with check boxes. when user select some files, I should be able to download selected files in a zip file.
View 1 Replies
Jul 23, 2010
Programmatically i am planning to move multiple files, Is it possible to move multiple files to a folder "d:MyTempFileFolder"
and create a compressed zip file of all files which are in this folder: "d:MyTempFileFolder" and then will try to download it.
using asp.net / sql server on windows 2003 server
View 1 Replies
Oct 19, 2010
how to allow user to navigate through subdirectories, select, and download files
View 6 Replies
May 7, 2015
[URL] .... I am referring to the link given mentioned above, i want to save image details into database of each file, if i select two files i want to save filename in database in each row. ist file in 1 row , second file in next row with file name.
View 1 Replies
Sep 21, 2010
Im currently working on a project where i have a form that users fill out in order to submit issues.My ask is to give the user the ability to upload multiple files together with the form submission and also go back each time they have an update and upload more if they need.The way i have it right now is that i only have one FileUpload Control and once the Save button is clicked the file is save in the database together with the form info.
I already has a separate table for the files with reference to the ticket but im just not sure how can i allow the user to submit as many files as they want in an easy way.
View 5 Replies
Oct 15, 2010
I am building a web-application that uses xml files to send them to Web-Services , and the application will be used by alot of users i have the files in my directory , and before continueing development I was thinking about when several users will use the same xml file at the same time knowing that , the users will have to ( read , write ) on these files , so if one user is writing on the file and another one will read from it we will have a bit confilict here .
I thought of copying the whole xml file TEXT and placing it as a string in the application but if i have to use like 10 xml files this will be a big performance issue i guess.
View 1 Replies
Apr 3, 2011
I have an asp.net application. There is a folder in the project that users upload images and files to that folder.
I want to restrict users, that each user sees only his files. How can I do this?
Because files are uploaded in folder, users may access them by browsing file urls.
View 1 Replies
May 7, 2015
<form id="form1" runat="server" enctype="multipart/form-data" method = "post">
<span style ="font-family:Arial">Click to add files</span>
<input id="Button1" type="button" value="add" onclick = "AddFileUpload()" />
<br /><br />
<div id = "FileUploadContainer">
<!--FileUpload Controls will be added here -->
</div>
[CODE]...
I just want to display the file name and the path where it is saved like the table format once it is Dynamically file uploaded
View 1 Replies
Jul 15, 2010
I have developed an application in ASP.NET 3.5 which utilizes the Membership and Roles Providers and Forms Authentication to manage user access and profiles.
There are various area's of this application that are only to be used by an admin users whom login using their email and password and the rest of the users log in using their telephone number and password via their iPhone.
For simplicities sake, I would like to have two different login pages, one that is formatted for the iPhone and performs the correct validation for users adding a telephone number and the other for the application administrators.
I want to redirect the user to their respective login page based on which folder they are attempting to access. For example say I have an application structure like this
/Admin
/Couriers
/Customers
/Whatever
Default.aspx
iPhoneLogin.aspx
adminLogin.aspx
Web.config
I want to be able to redirect users who go to [URL]/Whatever to iPhoneLogin.aspx and users to go to [URL]/Admin to adminLogin.aspx
View 1 Replies
Jun 29, 2010
Is there any control out there that will allow a user to upload multiple files at a time to a web server?
View 3 Replies
Jun 16, 2010
I have a folder with png images that are not shared or public (the folder is outside my application folder). Now I want my users to be able to view thoose images only if they are logged in (different users, different images). All images have a name that correspond to the users id. My idea is to stream thoose images into the asp:Image control, is that possible? How do I do that? Other (better) solutions?
View 6 Replies
Apr 12, 2010
i want to download a zip file from a gridview on link button's click event from following code but it download blank zip file & every time file size is 22 bytes.
[Code]....
View 4 Replies