I'm developing an ASP.net MVC2 application, and implement an export to .csv controller action, but when I add the headers to force the download, The following appears in the debugger:
"this operation requires IIS integration pipeline mode"
I have searched on numerouse sites with Google, but have yet to resolve this. I am using:
- IIS 7.5
- Windows 7 Ultimate and
- .Net Framework 4.0,
The application pools for ASP.net are configured in integrated pipeline mode, as I don't understand the problem.
Can the community assist me solving this and explaining the error to me?
AppendHeader
. This checks the workerrequest and probably branches off depending on which header-adding is applicable for the hosting environment. – Smokedry