Incorrect Header: Response.AddHeader("Content-
Correct Header: Response.AddHeader("Content-
This caused two issues for us. Using a jQueryFileUpload it would not display a list of existing file and the issue you explained. This only seems to have happened since 16.0.912.63 as I reverted back to an offline version I had downloaded some time back and it did not exhibit the same errors. IE and Firefox are not affected ans seem to handle this.
Ah, very nice - The patch fixed the problem. It was using a semicolon already, but there was a comma used in the filename and it was unquoted.
Orginal:
header("Content-Disposition: inline; filename=vCard_".$this->last_
Fixed:
header("Content-Disposition: inline; filename=\"vCard_".$this->
REFERENCES
http://groups.google.com/a/googleproductforums.com/forum/#!category-topic/chrome/report-a-problem-and-get-troubleshooting-help/hhZh_kpei8U
http://www.altitudesolutions.co.uk/Blog/post/2011/12/28/Chrome-16-breaking-use-of-ASP-NET-AddHeader-Method.aspx