解决“此操作需要 IIS 集成管道模式”在 ASP.net MVC2 中
我正在开发 ASP.net MVC2 应用程序,并实现导出到 .csv 控制器操作,但是当我添加标头以强制下载时,调试器中会出现以下内容:
“此操作需要IIS集成管道模式”
我已经用 Google 搜索了许多网站,但尚未解决此问题。我正在使用:
- IIS 7.5
- Windows 7 Ultimate 和
- .Net Framework 4.0,
ASP.net 的应用程序池配置为集成管道模式,因为我不明白这个问题。
社区可以帮助我解决这个问题并向我解释错误吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://devproj20.blogspot.com/2008/02 /this-operation-requires-iis-integrated.html
“您可以通过以下方式添加标头来解决此问题:”
Response.AddHeader("myHeader", "someValue");
http://devproj20.blogspot.com/2008/02/this-operation-requires-iis-integrated.html
"You can work around this problem by adding your header this way instead:"
Response.AddHeader("myHeader", "someValue");
转到项目项目属性(右键单击项目)并转到左侧的 Web 选项卡,然后检查属性使用本地 IIS Web 服务器。
在此处输入图片描述
Go to Project Project properties (right click on project) and go to web tab on left side and check the property use Local IIS Web Server.
enter image description here