Tagged Questions
0
votes
2answers
90 views
Open physical file on the server using ASP.NET
I want to open a physical file on the server on HyperLink click.
<asp:HyperLink ID="HyButton1" Target="_blank" NavigateUrl='<%#Eval("FullPath") %>' runat="server" Text="Open File" ...
1
vote
1answer
42 views
How to avoid the 0-byte file on Webclient download error
When using the following code to download a file:
WebClient wc = new WebClient();
wc.DownloadFileCompleted += new System.ComponentModel.AsyncCompletedEventHandler(wc_DownloadFileCompleted);
...
1
vote
2answers
43 views
How to implement file downloader to detect communication breakage?
I need to implement a file downloader in C#. This downloader will be running on the client computer, and will download several files according to several conditions.
The main restriction I have is ...
0
votes
3answers
68 views
Cant get over WCF's Max Received Messages error
Well, I've looking for an answer to my problem for several hours but I just cant get rid of. I'm using a WCF Web service to download a file from a server. To test, I've used 3 different documents ...
3
votes
1answer
97 views
Download function failing with file size 1.35gb
I have this download function, and it's working great. BUT with a file with filesize of 1.35gb the download stops at 300 Mb, 382, 400mb or 1.27 Gb. What am I doing wrong? (The download function is ...
0
votes
1answer
212 views
Watin project was discontinued?
Hi guys i was searching for help to a issue involving IE 9 and Watin, then i've noticed that almost all questions & answers were made in 2011. And most of people answering said that a update would ...
0
votes
2answers
455 views
Pdf file damaged on download in Chrome and Firefox
I am using iTextSharp for creating pdf reports (files) and storing those on the web server where my application resides. I am able to create the file, go into the storage folder and open the file ...
0
votes
0answers
72 views
Download file starts and progressed, but doesn't get to 'DownloadFileCompleted' event
my application is a client that download files from a server (which uses Handler to transmit files to clients).
The client uses WebClient object to perform DownloadFileAsync.
I've noticed that some ...
0
votes
1answer
653 views
Downloading file on client side using absolute path .NET
string FilePath = HttpUtility.UrlDecode(Request.QueryString.ToString());
string[] s = FilePath.Split(new char[] { ',' });
string path = s[0];
string FileName = s[1];
String str = ...
2
votes
2answers
382 views
IIS7 + ASP.NET Large Media File Downloading
I'm attempting to make a website that allows large file downloads (downloads in the sense that the browser doesn't try to play the video, or display the text file. I want to force the user to choose a ...
0
votes
1answer
224 views
How to export dataset to xls and save on server harddisk
I used the following code to convert a dataset into xls. It works fine but it throws an error. (Some formatting problem)
I want to save an xls file created in a specific location without the user's ...
1
vote
1answer
170 views
Creating a windows service that downloads files from azure every hour
What's the best way to get this to work?
I've tried some stuff but the AzureService didn't want to work with the service. The service on its own worked and so did the AzureService, but together ...
2
votes
2answers
945 views
Download manager - limit download speed
I need to implement a download rate limit for my file downloader application, and I've looked at the ThrottledStream class from CodeProject, but this won't work in my case since I have to be able to ...
0
votes
1answer
175 views
ZIP download contains html content
When I use the following code to download a ZIP file it appears to work. However, when I attempt to open the downloaded ZIP, I get an 'invalid compressed folder' message. When I open the ZIP in ...
0
votes
1answer
464 views
Download Image file from one URL to another server
I have to download images from live URL and save to live Server.
1
vote
4answers
6k views
Download files from an FTP server
I'm trying to get a list of the files on an FTP server, then one by one check if that file exists on the local system and if it does compare the dates modified and if the ftp file is newer download ...
2
votes
1answer
537 views
How to achieve pause & resume functionality for file download?
I would like to implement pause & resume functionality for downloading a file both for Server & Client. My Questions are:
What Protocol do I need to implement at server site (It will be .NET) ...
4
votes
3answers
540 views
What is the best memory buffer size to allocate to download a file from Internet?
What is the best memory buffer size to allocate to download a file from Internet? Some of the samples said that it should be 1K. Well, I need to know in general why is it? And also what's the ...
0
votes
2answers
573 views
Getting the name of the binary file before download in C#
At first let me describe the situation.
My application in C# asks the PHP server for the newest update. It uses its URL and a simple POST attributes like: 127.0.0.1/update.php?ver=0.2, the server ...
1
vote
0answers
150 views
Issue with File Download Redirect
I have a Silverlight application that generates server-side excel reports. A user can run a query with specified parameters, click Run, and after generating the result set, the server saves the excel ...
0
votes
1answer
362 views
UpdateProgress not working with download file
UpdateProgress not working with download file. Please see below code, in this code i have used updatepabnel ans updateprogress.
on btngen click i am downloading a excel file.file is downloading but ...
0
votes
2answers
109 views
Allowing the user to save the file from JavaScript
There are a lot of JavaScript utilities now to allow posting a file in an AJAXified way to the server these days. Is there any utility that allows streaming bytes to the client and download a file? ...
0
votes
3answers
127 views
How can I download several files from the iInternet and wait for everyone to download?
I need to download several HTML files in my ASP.NET application. The average file size is about 100 KB.
Right now I'm using the following code.
foreach (var item in items)
{
...
2
votes
1answer
139 views
Can the .NET ClickOnce downloader pull files from a site protected by a PIN-requiring client certificate?
(I tried this over a year ago using an older (than 4.0; I don't recall exactly which) version of the .NET framework. The non-browser downloader wasn't capable (to my knowledge) of negotiating the ...
2
votes
2answers
489 views
Page.Response.Write()
i have question regarding Page.Response.Write().
in my code save as popup is getting opened.
Page.Response.AddHeader("Content-Disposition", OpenType + ";filename=" + FileName)
but i want it save ...
1
vote
1answer
363 views
VB.net file-download prevents postback
I want to generate a (report) file for users to download, then display a message to users to show the process completed successfully.
Dim myFile As FileInfo = New FileInfo(<filepath>)
'My ...
0
votes
4answers
692 views
How can i delete a file after complete download on client PC in MVC asp.net
i have used getCSV function for return csv file at client side but i want to delete a file after download complete at client side
my function
Public Function GetCSVFile(ByVal listSeperator As ...
2
votes
5answers
1k views
Forces to prompt download box IE
I'm having a problem with some reports in the application I'm doing manutention
I've a button that does a postback to the server and do some information and then get back to the cliente and open a ...
10
votes
1answer
8k views
Resolving “this operation requires IIS integration pipeline mode” in ASP.net MVC2
I'm developing an ASP.net MVC2 application, and implement an export to .csv controller action, but when I add the headers to force the download, The following appears in the debugger:
"this ...
0
votes
0answers
730 views
C# WebClient crashes my application!
i'm trying to run this code:
remoteProducts.ForEach(delegate(RemoteProduct p)
{
this.toolStripStatus.Text = "Downloading product: " + this.progress.Value + "/" + ...
2
votes
2answers
2k views
How to open file with its application(the file not exist in the web server)?
I want to ask how to open a specific file (the file is out of the server, i have a relative path to it stored in config file) with its application, when clicking on a specific link button or hyper ...
2
votes
2answers
2k views
best practices for download big files using WCF and ASP.NET
I Have this architecture:
WebSite ASP.NET <------> WCF Service <--------> DataBase
DAtabase gathering very big files.
User request a big file in aspx page, through WCF Service. Service call ...
1
vote
2answers
543 views
opening a file in the browser instead of downloading it
Im using ssrs through a reports server to generate a resultStream byte array using ReportExecutionService.Render() which I am currently serving to the user with the following code. Is there a way I ...
0
votes
2answers
3k views
Download file using webclient
I try to download a file from https site and every time the file is saved to my machine it is only 1KB. The file is supposed to be 1MB. I am using Webclient.
string strFile = @"c:\myfile.txt";
...
1
vote
1answer
789 views
Web Performance testing using VS2010 “Testing a file download”
I am trying out the VS 2010 testing tools for the first time. And I tried recording a web performance test and my actions had a file download implemented as in the KB article here ...
1
vote
1answer
2k views
Automate downloads from password protected website
I need some help with a work project I have been assigned. At the moment we manually go to the site, logon and then download 2 excel files from a supplier's website every month. The files are then ...
0
votes
2answers
2k views
Downloading file from server (asp.net) to IE8 Content-Disposition problem with file name
I am downloading a file from the server/database via aspx page. When using the content-disposition inline the document opens in correct application but the file name is the same as the web page. I ...
1
vote
2answers
4k views
ajax-updatepanel file download problem
I have a gridview inside an update panel which holds the list of uploaded files to application. I want, when a row is selected, on selectedIndexChanged event to return the file to be downloaded
here ...
0
votes
3answers
249 views
please tell me which one is faster desktop application or web application in .net
i am to create a application which will send an xml file through https protocol and get a xml file as a response. and this process will go for more then lac. times(continusly to download all xml files ...
1
vote
2answers
599 views
Data getting truncated on filedownload with Reponse.BinaryWrite() OR Response.TransmitFile() data
Okay so i have page which bacially gets a file as a Byte[] from a webservice which I then give a Save/Cancel dialogue to the user to save that file. This file can either be xml or cvs format. When the ...
4
votes
4answers
3k views
Multipart Downloading in C#?
Please excuse my ignorance on the subject.
I would like to write an application in C# that can download files off a server the same way DownThemAll does. DownThemAll seems to open four connections to ...
1
vote
2answers
475 views
C# code for downloading item, that checks text/binary, and gzip/non-compressed?
QUESTION: Anyone have some code they could post that will download a file from a URL/Link that will automatically handle:
(a) binary or text based
(b) gzip encoded
BACKGROUND: I've been starting to ...
4
votes
3answers
457 views
How can I programmatically tell if a binary file on a website (e.g. image) has changed without downloading it?
How can I programmatically tell if a binary file on a website (e.g. image) has changed without downloading it? Is there a way using HTTP methods (in C# in this case) to check prior to fully ...
9
votes
3answers
8k views
How to block downloads in .NET WebBrowser control?
I need to prevent the .NET WebBrowser control from showing any "Do you want to open or save this file?" and "Save As" dialogs. Instead, I want to display a message box telling users that file ...

