0
votes
1answer
51 views

how to set the save location in run time in mvc application

I need to set the save location in run time in mvc application . In windows appication we use the System.Windows.Forms.SaveFileDialog(); But, what we use the web Application?
0
votes
0answers
154 views

ASP MVC3 file download exception: Server cannot set content type after HTTP headers have been sent

I get an exception in the logs which says "Server cannot set content type after HTTP headers have been sent". What am I doing wrong in the following code? Response.ClearHeaders(); ...
0
votes
1answer
150 views

Duplicate content-disposition headers with MVC3

Im trying to open pdf files or other files types like images with the browser but ff and chrome are giving the duplicate content error. I am using the code below to open the files. ...
1
vote
3answers
493 views

Downloading excel file in asp.net mvc

What I'm trying to implement is giving the users the ability to export the grid data to an excel file and download it, with the help of a file save dialog. Here's how I have coded it right now - In ...
0
votes
2answers
357 views

FileContentResult writes to response body

Why does this write "w,w,w" to the response instead of opening a save file dialog? [HttpPost] public ActionResult Export(int id) { var contentType = "text/csv"; ...
2
votes
3answers
693 views

Returning Multiple Files from MVC Action

So I've got an MVC 3 application that has a couple places where a text file gets generated and returned in an action using: return File(System.Text.Encoding.UTF8.GetBytes(someString), ...
2
votes
2answers
461 views

ASP.Net MVC3 app downloading files to client from another network server

We currently use the code below to download files from a network server to the client in an old ASP.net page. We have re-written the app in MVC3 and would like to upgrade this functionality. I ...
0
votes
1answer
267 views

How to execute an ajax call just after a request to download a file in ASP.NET MVC3

what I want to do is to update the number of "new files" after I read one. First of all, I have a text with the quantity of files that are new (by new files I mean the ones that I havent downloaded or ...
1
vote
2answers
139 views

download link give me filenotfound exception

in my controller, this is the code i have public FileResult Download(string file) { var vFullFileName = HostingEnvironment.MapPath("~/App_Data/Files/"); var files = ...
0
votes
0answers
340 views

ASP MVC3: Download a file in byte-array form and redirect it to a different URL

I've got a picture in the form of byte array. When user clicks a button, download file dialog should show and in the meanwhile page should get redirected. But: After clicking the button, dialog is ...
0
votes
1answer
231 views

How can I view an uploaded file in the web browser using MVC 3?

I am trying to allow the users of my site to view a file in the web browser that they have just uploaded by clicking on an attachment image. I have already written the code for the upload function and ...
0
votes
1answer
394 views

Issues in downloading the file in mvc3

In my view i need to download the file from local folder. So i wrote an ajax function like following <img id="trailer" src="../../Images/icon.gif" alt="exists" title="Click on image to ...
2
votes
1answer
550 views

Downloading a file but returning Ajax response when there is an exception in asp.net-mvc 3

I have the following code in my controller: public ActionResult downloadFile() { try { FileStream fs = new FileStream(helper.getFileLoc(), FileMode.Open); ...
0
votes
2answers
589 views

Download file not working on internet explorer 6 (only for certain people)

I am working on an ASP.NET MVC3 webapplication. I have a button "Download" that downloads a file from the server. <input type="button" onclick="window.location.href='@Url.Action("DownloadFile", ...
0
votes
2answers
1k views

How do I post a JavaScript array to an MVC 3 controller action (no AJAX due to file download)?

I'm trying to do something that seems like it should be easy but I'm new to MVC and convention-based programming. I have a jQuery datatable that is getting rows for PDF documents through AJAX. In ...
0
votes
3answers
565 views

Download a file from a web server in ASP.Net 4.0 C# [closed]

I am hosting files on my web server and I want the end user to be able to download a copy of this file on their machine to open and view. I currently have a list that is populated through a foreach ...
1
vote
1answer
674 views

Clicking Open Word Document tries to reconnect to Controller action while downloading

I have a requirement to download a file from the server, but open inline if possible. I'm currently doing; Response.AddHeader("Content-Disposition", string.Format("inline; filename={0}", ...
2
votes
3answers
2k views

Creating a Word document from HTML

I know there are a lot of other questions on SO about this topic, but I need some more information. It's a two-part question to my requirement: dynamically generate an MS Word document from HTML and ...
1
vote
2answers
2k views

MVC3 zip files and download

I have an MVC3 C#.Net web app. I am needing to zip a subset of files in a folder and save to the user's Harddrive. I already am downloading individual files, but need to have "Download Multiple ...
3
votes
1answer
2k views

How to avoid duplicate content-disposition headers with MVC3 FileContentResult?

We have some files stored in sql database. On an ASP.NET MVC3 form, we display 2 links: View this file | Download this file These links go to these corresponding action methods. The download works ...
0
votes
1answer
342 views

Downloading files in asp.net mvc

I have a link that allows the user to download a file. Basically I call the controller action that uses base.File function. I have few different types of files - pdf, doc, text....Is there a ...
1
vote
3answers
1k views

return both a file and a rendered view in an MVC3 Controller action

is it possible to both return a file for download and update a view from a controller method call? or a workaround is needed, maybe using javascript (calling a refresh of the page after loading)? ...
0
votes
2answers
313 views

ASP.NET MVC File method

Hi I would like to send user a file but without showing the url. Using File method the problem is that I have my file in another server and so I have only url not a virtual path, I tried to use ...
1
vote
3answers
4k views

jqgrid/mvc 3 - Export to excel and raise a file download dialog?

I have read many solutions but I haven't got the working one yet. My problem is quite easy, export data to excel file and raise a file download dialog. However the file download dialog doesn't show. ...
1
vote
1answer
623 views

Open File in Directory from Webpage

I am working on a file management application which parses excel files from the business and uploads the latest data to the database. Is it possible to link back to that file from the webpage so that ...
3
votes
1answer
1k views

MVC3 - File Download - Wait Status indicator

Ok, I've done my homework and have found similar threads. However, I haven't found a good answer. Using MVC3, C#, Razor View Engine. My scenario is pretty straightforward. I have a view with a link ...
2
votes
2answers
1k views

Error in file download using ASP MVC3

This code is supposed to download a file using mvc3 controller public FilePathResult GetFileFromDisk(String file) { String path = AppDomain.CurrentDomain.BaseDirectory + "AppData/"; String ...
1
vote
4answers
833 views

how to make a picture file downloadable?

I have an ASP.NET MVC3 application and I want to link_to an image file (png, jpeg, gif, etc), and when user clicks on it, the file goes to download, instead of the browser shows it; is there any way ...
0
votes
4answers
673 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 ...