0
votes
2answers
26 views

download file from server with the jQuery fileDownload plugin

I am using the $.fileDownload Plugin from John Culviner, my goal is to download a file which is located on a server. I am using ASP.NET Web Forms. Here is my code which I use. My JavaScript code is ...
0
votes
1answer
52 views

Upload Download File Visual Studio

I have created a website using Visual Studio C#, with different functionalities for students and teachers. The only thing remaining is that I wish to create two more pages, one in the teacher folder, ...
0
votes
1answer
18 views

How to “response” with a generated file without freeze the page ASP.NET

I'm facing a problem with ASP.NET and Response. What I want to do is really simple: button click, file generation, file download. I can achieve this but whenever I try to click the same button (or ...
0
votes
0answers
13 views

How to use $.fileDownload in ASP.NET Web Forms project

how can I use the jQuery Plugin fileDownload from http://johnculviner.com/jquery-file-download-plugin-for-ajax-like-feature-rich-file-downloads/ I have make this in my JS code: $.ajax({ ...
0
votes
1answer
32 views

ASP.NET - How can I only perform this function on certain filetypes?

Would like to only use this function with specific file extensions (that I define). How can I do this in ASP.net? Basically, the following code allows for any file to be able to be downloaded, just ...
0
votes
2answers
300 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" ...
0
votes
1answer
29 views

IE8 fails to download file from WCF - doesn't recognize filename

I have WCF REST Service whos purpose is to serve files on request. WebOperationContext.Current.OutgoingResponse.Headers.Clear(); ...
1
vote
2answers
182 views

Downloading large files asp.net mvc 3?

I have a large pdf file (upto 2 GBs) on a database server which I want to send to client for download. Also, I have size limitations on my web server and cannot store complete file on it, after ...
0
votes
1answer
162 views

Download a file on the client macine using asp.net

I want to download a text file from my website to the users pc without prompting him for the location to save the file. I have tried it using code below : Response.TransmitFile("G:\Medical ...
0
votes
0answers
79 views

I'm can download video from a password protected site in asp.net, but the video won't play

So after using this site extensively, I was able to programatically log in to a password protected site, access and display protected web pages, and download a protected video by URL. But I'm having ...
0
votes
2answers
152 views

Download file from SVN Repository in C#.net

How can I download file from SVN repository from my web application in C#.net? I want to download file programatically. When button is clicked, it should download file from URL given in TextBox.
0
votes
0answers
135 views

ASP.NET Downloading files from an SQL table

I'm trying to download a file from an SQL Server table. I am using a GridView. Whenever I try to download a file, I get a corrupted file. I am using ASP.NET and VB.NET with SQL Server 2012 Express. ...
0
votes
0answers
75 views

Download server local path with asp.net ajax

I have telerik grid with download link item, the download link was working perfectly , but when i set the grid between update panel it did not work. when debug the event is fired and the code runs ...
0
votes
2answers
69 views

Download file from server

I have an ASP.NET/C# page. It basically has a textbox to accept user input. The data is processed on the server and a file is generated and saved. Initially I transmitted the file to the client using ...
0
votes
1answer
112 views

IE8 on some pages the download file does not work

I am developing an application that allows the user to download an excel file with regular content(not bigger then a few Mb). On IE9 the file gets downloaded perfectly, but on IE8 some of the pages ...
0
votes
3answers
160 views

Downloading a file from SQL Server - ArgumentOutOfRangeException

I'm trying to download files from an SQL Server 2012 database using GridView. I am getting an ArgumentOutOfRangeException giving me this error: Index was out of range. Must be non-negative and less ...
1
vote
1answer
76 views

ASP.net Create a Torrent from File

Our current software updates are hosted on our server. We'd like to offer Torrents as an alternative download option from our server. When new releases are published it should offer people better ...
3
votes
1answer
243 views

How to login and then download a file from aspx web pages with R

I'm trying to automate the download of the Panel Study of Income Dynamics files available on this web page using R. Clicking on any of those files takes the user through to this login/authentication ...
0
votes
0answers
23 views

How to track the download complete time of a file at server ?

I want to log the time at the web server when a download starts and completes at client machine ? Is this possible ? I am using IIS 7. I tried to utilize this http://jqueryfiledownload.apphb.com/ ...
0
votes
0answers
282 views

Download Progress Bar in C#

I have written the code to download an excel file. This file size is big (more than 2 MB). In the application I want to show the PROGRESS BAR while it is downloading. How to achieve it? My download ...
0
votes
1answer
70 views

ASP.NET - Does streaming file to the client occupy server memory?

I have a requirement to make the files in a file server available for download through an application running on a web server. Users would be clicking on the links available on the application page ...
0
votes
1answer
113 views

Response.Flush writes HTML for page on Windows Vista, 7, 8 but not on Server 2008

I'm generating a CSV from a link on the page and sending it back to the user. I wish to maintain the page context. This code works flawlessly for IE, Chrome and Firefox on my 2008 Dev box, however ...
1
vote
1answer
110 views

Chrome showing “canceled” on successful file download (200 status)

Not sure if this is an actual problem or not, but I'm writing a file out in ASP.NET, and even though the file always successfully goes through, in Chrome's developer tools, network tab, I always see ...
1
vote
1answer
336 views

file download popup box using javascript

I am working on ASP.NET web form application. I am processing file at server side in my web service code. This web method will return me file memory stream. I would like to consume this memory stream ...
0
votes
1answer
425 views

How to display download file popup (not a new window)?

I try to display "save as" popup on IE using javascript (jquery is ok too). The expected result is: I use this code: window.open("some url on my server", "_self"); and I get: How can I make it ...
0
votes
2answers
74 views

Downloading files from the server

Currently I have stored on a BD files of any type in binary format. The process I do in the file upload is as follows: Drag & Drop files and collects is sent to the server. In the server ...
0
votes
1answer
84 views

ASP.NET MVC Check downloading file for null

I need to download a file. If file was genereted for user early, I should to display some message for him. Can I check file for null? @Html.ActionLink("Print", "Certificate", new{type=Model.Type, ...
0
votes
0answers
89 views

IE9 fails to render response (attachment) when URL query string is too long?

I'm debugging a really weird issue and hoping someone here could give me a few clues. We have a reporting component in our application where we issue GET requests with a long query string containing ...
0
votes
1answer
172 views

Resuming HTTP download in IE9

i'm really stuck with resuming download process in IE 9. Everything works great in other browsers and download managers. I know about required headers to resume download, but IE does not send them ...
0
votes
2answers
542 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 ...
2
votes
2answers
1k views

Error handling when downloading file from ASP.NET Web Handler (.ashx)

I have a web page which a user can download a PDF file via an ASP.NET web handler (.ashx). It is implemented like the answer in this question. The problem I have is when I do do this ...
2
votes
1answer
756 views

How to download multiple files using asp and c#

I'm pretty new at this, so bear with me. Here's my code. It only downloads one file even though multiple are selected. foreach(String fileName in fileNameList) { FileInfo updateFile = new ...
0
votes
2answers
948 views

how to create a hyperlink for file download in asp.net?

I have some files stored on my machine. When a user wants to generate a link the page should generate a hyperlink. This hyperlink can be used by any other user so as to download the file
1
vote
2answers
543 views

How to download a file from a website to a web server in C#? [closed]

I have a website that is hosted by GoDaddy (Windows server hosting). I would like to be able to download a file from the internet (e.g. ...
0
votes
3answers
361 views

Download txt file issue

I'm new in .Net development. I try to enable downloading txt file: I use this code: protected void Page_Load(object sender, EventArgs e) { string str = "Test information"; ...
0
votes
1answer
1k views

Download File to client PC in asp.net using VB.net

I am developing a website that would be accessible only within our organisation I want to implement a functionality in which client will download a file (Visio File *.vsd) from server and save it to ...
0
votes
1answer
125 views

Downloading a file clicking a link or button on a jquery dialog [duplicate]

Possible Duplicate: Download a file using jQuery after creating it in the server I have a jQueryUI dialog which contains some HTML content. After user makes their input and clicks the OK ...
4
votes
2answers
540 views

Download a file using jQuery after creating it in the server

When I click a button on the client side I want to invoke a public static webmethod on the server side using AJAX. The static method will create the appropriate file. After the file is created I need ...
-2
votes
3answers
1k views

Uploading documents in sql server 2008 using asp.net C#

I'm currently researching different methods and techniques into uploading and downloading documents into a sql server 2008 database using ASP.Net and C# for a web application. I have found this ...
-2
votes
2answers
189 views

How to set a download path to a local drive in client using ASP.net

I'm trying to set a link in my asp.net website such that the file downloads directly to a specific local disk on the client. For Eg: E:\output\report.pdf Can anyone help me with the coding ?
1
vote
2answers
332 views

Downloading a file in the server with javascript

I have an ASP.NET web application. At some step I create a text file and store it in a folder on the server. I do this on the server code. But then just after getting done with creating the file I ...
1
vote
2answers
102 views

Getting script like error when sending file from asp.net

I get this error when I try and send a file from my asp.net page : Microsoft JScript runtime error: Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not ...
0
votes
0answers
142 views

ASP.net prompt save as dialog on save file via RemoteDownLoad

Using vs2008 asp.net webform application. I want to allow (external)users to download and upload files to a directory on our server. I have found how to allow downloads via the Response.writefile ...
2
votes
2answers
524 views

AJAX File Download with custom header

I want to send request to a URL which provides me file download dialog box. At the same time the server needs certain parameters in request header. So i want to insert a custom header in the request ...
0
votes
2answers
1k views

Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack

I have download link present in grid view and when I click on it, a save dialogue pop up will appeared and excel fill will be download. But I am getting error "Unable to evaluate expression because ...
0
votes
2answers
193 views

Issue while downloading a file from server (Save works fine but Open does not open the file)

I am trying to download a file uploaded from a location on server. Here is the code i am using to download a file Response.ContentType = "image/jpg"; Response.AddHeader("Content-Disposition", ...
0
votes
1answer
86 views

Web form non-responsive after download

I'm working in ASP.NET (2.0) and we have a page where a user is able to select and download a series of files as a zip. I got this to work without undo difficulty by using the DotNetZip library ...
0
votes
0answers
73 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
0answers
327 views

C# Response Shows Download Unsuccessful Error on Android Browser

I used Asp.net and c# to run this website and to approach mobile version, I used JQuery mobile. When I download via desktop browser is working fine and when I try to download via mobile, I got ...
0
votes
0answers
236 views

Easy way to display a loading screen while downloading and upserting on ASP?

I've only seen examples on how to display loading gifs while the page itself loads, and stopping once it's loaded, but I want it to display the loading gif while the code is downloading some XML ...

1 2 3 4 5