使用.NET 4.0时使用iis7的空白页面

时间:2010-08-21 15:59:33

标签: .net iis-7

我有一个奇怪的问题,当我将默认的应用程序池从.Net 2.0更改为使用.Net 4.0时我得到没有HTML的空白页面,奇怪的是我已经安装了Net 2010的VS 2010

感谢adavanced

2 个答案:

答案 0 :(得分:1)

确认您的项目是针对.NET Framework 4.您希望非空白页有一些描述,但只是确保。也许您的浏览器显示“友好”错误?

在事件查看器中检查任何与.NET或IIS相关的错误消息。可能会有一些关于发生了什么的线索。

考虑在IIS中创建一个全新的网站来测试您的应用部署。

答案 1 :(得分:0)

Check the <handlers> section in your web.config. Do the <add> tags have this attribute?

preCondition="integratedMode,runtimeVersionv2.0"

Try removing the part after "integratedMode". The preconditions prevents them from being used in .NET 4.0. Without any usable handlers, you won't see a response.