OK. I'm sure it does download XML files with the .xml extension, but I'm wondering what is missing in the code here to cause the .xml extenstion to be missing from the downloaded file.

Note: This works in IE 6+ (didn't try WebKit based browsers or Opera)

	private void GenerateXmlAttachment(string xmlInStringFormat, string fileName)
	{
    // Where fileName = "someFile.xml"
		HttpResponse response = HttpContext.Current.Response;
		response.Clear();
		response.Charset = string.Empty;
		response.ContentEncoding = Encoding.Default;

    response.AddHeader("Content-Disposition", "attachment;filename=" + fileName);
		response.AddHeader("Content-Length", xmlInStringFormat.Length.ToString());
    response.ContentType = "text/xml";  		

    response.Write(xmlInStringFormat);
		response.Flush();
		response.End();

	}

Ideas anyone?

link|improve this question

75% accept rate
1  
Can you ABSOLUTELY GUARANTEE filename has .xml on the end? – cjk Jul 13 '09 at 16:39
100% ABSOLUTELY GUARANTEED. Just checked again because you made me doubt it ;) – nickyt Jul 13 '09 at 17:00
Here's the response headers care of Live HTTP Headers: HTTP/1.x 200 OK Server: Microsoft-IIS/5.1 Date: Mon, 13 Jul 2009 17:05:14 GMT X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Disposition: attachment;filename=test.xml Content-Length: 2040 Cache-Control: private Content-Type: text/xml – nickyt Jul 13 '09 at 17:06
feedback

3 Answers

up vote 2 down vote accepted

Try changing:

response.AddHeader("Content-Disposition", "attachment;filename=" + fileName);

To:

response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(fileName));

The code works for all browsers (including Firefox which we use heavily).

link|improve this answer
@Jose. Yup that's it. I found it about 30 minutes ago on this post, webmaster-talk.com/asp-forum/…. Thanks for posting. – nickyt Jul 13 '09 at 19:06
feedback

Does your filename have space in it? Firefox may have problem with that.

See this blog post for more details:

http://blog.mjjames.co.uk/2009/04/content-disposition-in-different.html

link|improve this answer
feedback

Solved the firefox spaces problems. Surround your filename with quotes.

Change the code below

response.AddHeader("Content-Disposition",
                   "attachment;filename=" + fileName);

to

response.AddHeader("Content-Disposition",
                   "attachment;filename=\"" + fileName + "\"");
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.