Allow User To Navigate Through Subdirectories - Select, And Download Files?
Oct 19, 2010how to allow user to navigate through subdirectories, select, and download files
View 6 Replieshow to allow user to navigate through subdirectories, select, and download files
View 6 RepliesI have a gridview that allows the user to export this gridview to excel. Here is my codes but I would like my user to be able to select where to download the file
Protected Sub ExportToExcel(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnExport.Click
lblMsg.Visible = True
Try
Dim objSw As New StreamWriter(txtFileName.Text.Trim + ".xls")
'Dim serverFilePath As String = "D:Excel Files"
'Dim fileStream As New FileStream(serverFilePath, FileMode.Open)
'Dim fileSize As Long = fileStream.Length
'Response.ContentType = "application/octet-stream"
'Response.AddHeader("Content-Disposition", "attachment; filename=""" & txtFileName.Text.Trim & """;")
'Dim fileBuffer As Byte() = New Byte(fileSize - 1) {}
'fileStream.Read(fileBuffer, 0, CInt(fileSize))
'Response.BinaryWrite(fileBuffer)
'fileStream.Close()
'Response.[End]()
Dim objDt As DataTable = DirectCast(Session("Data"), DataTable).Copy()
'Get No Of Column in GridView
Dim NoOfColumn As Integer = objDt.Columns.Count...........................
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.
how to download a file from a button_click event and when the file has finished downloading to transfer to another web page. vb.net
e.g
Dim
myFilepath As
String =
"c:ClientsCL592australiapos.com.auPublic_htmldownloadsSAMSAM.msi"
[Code]....
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) ?
I use the AdRotator control to display my photos on my main web page without any hypertext link. This work well, but i want to put two arrows or buttons on my page to allow user navigate into my pictures by just clicking on theses button (next, previous).
View 1 RepliesI have a login status object on each page for logging out. Clicking on this object will logout the user and navigate to the login page. I would like to set it up when a page is loaded, if certain conditions are met the user will be automatically logged of and redirected to the login page. If I could just somehow have the program click on that object, that would do the job.
View 6 RepliesI'm using UrlRewriter.net, mentioned on ScottGu's Blog. I've built a site around this and now I'm having problems with subdirectories. The problem is, I want to exclude a directory and all subdirectories/files within it from rewriting. The rules I have are:
<rewrite url="~/(.*)/Uploads/Images/(.+)?" to="~/Uploads/Images/$2" processing="stop" />
<rewrite url="~/(.*)/Uploads/(.+)/(.+)?" to="~/Uploads/$2/$3" processing="stop" />
<rewrite url="~/(.*)/Uploads/(.+)?" to="~/Uploads/$2" />
The problem is, although I can access files in the uploads directory (/Uploads/myfile.ext) and see the directory lists for direct subdirectories (/Uploads/mySubdirectory/), anything in /Uploads/mySubdirectory/, eg: /Uploads/mySubdirectory/myfile.ext returns a 404, because the UrlRewriter is messing with the Urls. I've tried these rules in different orders to no avail.Has anyone used this before? There must be a way to get it to work.
I need to copy a whole directory C:X to C:YX, and I need the sub-folders to be copied as well.Is there any way to do it with the System.IO.FileDirectory namespaces ?
View 3 RepliesIn the root of my domain i have the CSS file style.css and the masterpage file site.master.The link to the CSS file within the site.master is
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
The problem is that webpages contained within subdirectories do not inherit the CSS file.What am i doing wrong here?If i copy the style.css file to the subdirectories everything works like a charm...UPDATE: If i change the path to /style.css or to ~/style.css the style is Not applied also to the webpages within the root folder.
downloading files from an FTP server. The FTP server produces new files from time to time. so my application needs to Download only the "NEW" files and disregard what i have already downloaded previously. I have a time stamp on when was the last download time. I Using FtpWebRequest, WebRequestMethods.Ftp.ListDirectory, WebRequestMethods.Ftp.GetDateTimestamp. The problem is the ListDirectory gives me all the List in the FTP directory and i have to loop all the way down starting again from the start to the last file and check it with my last time stamp to DL the NEW files another problem is the FTP Directory contains 30,000 Files so it would take long until ill find the my last download time to start again on that point..
View 16 RepliesI have a web based application, asp.net with vb.net. However, i have different files with different extension such as .CSV and .RTF, and the clients need to download these files in regularly bases
View 18 RepliesI want to enable the users of my website to download the files from the server, but I can do it only with those files which are inside the website's folder(by creating hyperlinks to those files).
How to enable the users to download files from server which are not in the website's folder but somewhere else on the server.
bump on this WebForms MVP and i was able to download the DLL files but i don't know how to start. how to integrate it in VS, etc..
View 5 RepliesI've been asked to implement the French translation of an ASP.NET 3.5 website. Each translation is going into its own separate website Unfortunately the previous programmer did not implement localization, so each site will have its separate set of files - this is not negotiable.
This French version will also go into its own website (www.mysite.ca), but for the moment I have been asked to put it into a sub-directory of the current site, called /CA I do not want to start messing around with file paths (for navigation and images), because the plan is to move the files in this sub-directory into a separate location in a few weeks. So the only alternative seems to be to move a copy of the site into the sub-directory and set it up as a separate application.What is the best way to set this up? Since the files in both sites belong to the same namespace and have the same names, how to avoid naming conflicts?
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 Repliesi 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 .
I'm working on a website that streams audio files for the user from a directory on the server machine. How do I protect the audio files from users being able to navigate to the folder and just downloading them locally, but still provide them access to stream them? If I set permissions on the folder via IIS, is there a level that I can set so that the server can stream but not allow anonymous access?I'm sure there is a tutorial or other thread about this out there, it's just hard to search for this specific issue. Any help or a simple link to another thread/tutorial
View 3 RepliesI 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"
am able to download single files which is coming as bytes from database..how to go with multiple files....
View 4 RepliesI want to know that how many sites like jqueryui, etc. build online zip packages for download. And how it can be done in asp.net ?
View 2 Repliesin my project i have a folder containing N number of files. I need a functionality that the page should have links for all those files so that client can download those files.
For this i have dynamically created Link Buttons and linked each file with each link Button.
The Code is as
string filePath = Request.PhysicalPath.Substring(0, Request.PhysicalPath.LastIndexOf("\"));
filePath = filePath.Substring(0, filePath.LastIndexOf("\"));
filePath = filePath.Substring(0, filePath.LastIndexOf("\")) + "\Export";
string[] files = System.IO.Directory.GetFiles(filePath);
[Code]...
But the problem is that, when i am trying to download this:
the file is downloading in HTML format, moreover the file name of downloaded file becomes same to my Code file name where as i want the actual name. the downloaded file have the actual data but it also contains the html code to the page on which this links are coming
I need a program that would download all csv files from an sftp location. I've the sftp host IP, user name, password and port details of the sftp location. I am able to login through Filezilla. But as I need to login programmatically, so that I can get a list of all files in the folder.
When the code works fine for a ftp request, it doesn't for an sftp request. Given below is my code to connect to the ftp uri.
[Code]....
My system admin says that there is no uri that could be given for sftp sites at all. Now, how can I go about this? Is there any third party tool available for this?
I want to make a website that has many files and the user can use it to download the files. Also, the admin can upload any file. How I can save the files so the file will be exist when the user download it and where I can put the file when the admin upload it?
View 2 Repliesi want upload zip and rar file to server and download it and audio and video file also.
View 1 Replies