This is my problem. I load xml from my database and push it to the client using code. But the problem is that the browser automatically opens that xml instead of offering it as a download.

Is there a way to force your browser to download that file and not showing it?

I'm working in a C#, Asp.net environment (with IIS7).

Thx

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted
protected void DisplayDownloadDialog()
{
    Response.Clear();
    Response.AddHeader(
        "content-disposition", string.Format("attachment; filename={0}", "filename.xml"));

    Response.ContentType = "application/octet-stream";

    Response.WriteFile("FilePath");
    Response.End();
}

This will force to download the file and not display in the browser.

This will work for any file types without requiring to specify any special MIME type.

link|improve this answer
thx, this does the trick just fine. great – user29964 Dec 16 '09 at 8:07
I have a problem that method is not working for the very first time downloading.. but start from 2nd time onwards, it is working fine.. the first time, instead of the filename it is displaying the page name`test1`.. any idea why?? – william Sep 14 '11 at 11:00
can you post some code here ? – this. __curious_geek Sep 14 '11 at 15:16
feedback

Add a content-disposition: attachment header.

link|improve this answer
feedback

This is explained in this article: http://www.xefteri.com/articles/show.cfm?id=8

The key is in this line:

Response.AddHeader("Content-Disposition", "attachment; filename=" & file.Name)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.