Anders
Anders

Reputation: 657

iis 7 and .net framework 4.0 beta 2

I am trying to get a asp.net 4.0 beta 2. website running that is working on my dev machine, but not when I published to my server. Where I get the HTTP 500.22 error when using the 4.0 as application pool and "Integrated" in "Managed Pipeline Mode".

What am I missing?

Thanks, Anders

Upvotes: 2

Views: 402

Answers (1)

Kev
Kev

Reputation: 119856

Try setting this in your web.config file:

<system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
</system.webServer>

Upvotes: 3

Related Questions