Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a MVC application using .Net 4.0 and have installed it on a server with IIS 6 on it. I installed .Net 4 on the server and changed the ASP.Net version to 4.0.xxx.

Unfortunately, I am still getting the error "Unrecognized attribute 'targetFramework'". What am I missing?

share|improve this question

2 Answers

up vote 18 down vote accepted

I figured out the problem. When I had originally setup the server to run MVC with .Net 2, I had setup the wildcard path to point to the aspnet_isapi.dll file in the v2.0.50727 directory. Once I switched it to v4.0.30319 it worked.

You can get to the wildcard mapping by...

  1. Open IIS Manager
  2. Open the website properties
  3. Go to the Home Directory or Virtual Directory tab
  4. Click Configuration button
  5. Edit the wildcard mapping (lower box). If there isn't a wildcard mapping, add one.

The value should be c:\windows\microsoft.net\framework\v4.0.30319\aspnet_isapi.dll (depending on the directory you installed .Net 4 to).

  • As a side note, you can change the ASP.Net version under the ASP.Net tab in the website properties.
share|improve this answer
+1 for figuring it out & sharing the solution. – SoftwareGeek Jul 13 '10 at 1:52
Where is website properties? – Austin Truong Nov 8 '12 at 18:48
If I remember correctly (I'm mostly in IIS7 now), right-click on the website and select Properties. – Brian Nov 9 '12 at 2:03

You will want to register 4.0 with IIS. Go to the command line and do this: C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319>aspnet_regiis -i

My server is: IIS6 on Windows 2003 64 bit server , it had 4.0 installed, but IIS didn't have 4.0 registered.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.