2

I install .NET Framework and it shows the message saying that was all right, but when I try to run a web site the uses .NET 4, it doesn't run, because IIS doesn't find the .dlls. Even if I search for them at windows explorer, I can't find.

Does anyone had the same problem?

2 Answers2

1

You need to explicitly enable ASP.NET 4.0 web service extensions:

  1. Click Start, click Control Panel, click System Security, click Administrative Tools, and then click Internet Information Services (IIS) Manager.
  2. If you need to connect to a remote IIS Server, right click the Internet Information Services node and click the Connect... option.
  3. Type in the computer name for the remote IIS Server and credentials if necessary.
  4. Click the Web Service Extensions folder. The security lockdown console appears in the frame on the right.
  5. In the Web Service Extensions window, right-click the ASP.NET v4.X.XXXX, and then click Allow.

http://msdn.microsoft.com/en-us/library/aa560277.aspx

Massimo
  • 70,200
  • 57
  • 200
  • 323
0

IS the web site application pool set to .NET 4 and not the default pool?

Oskar Duveborn
  • 10,760
  • 3
  • 33
  • 48