0

I am doing sample application on MVC when i run the application i am getting the following error

enter image description here

Also in my IIS i am unable to find the version 3.5 even i am having 2008 installed on my pc so can any one tell how to rectify this problems

enter image description here

Developer
  • 8,390
  • 41
  • 129
  • 238

1 Answers1

1

You might need to configure extensionless mappings as IIS 5 doesn't support it.

Darin Dimitrov
  • 1,023,142
  • 271
  • 3,287
  • 2,928
  • EVen i follow that steps issue remains same – Developer Aug 23 '11 at 15:39
  • 1
    @User, it is normal that IIS doesn't show v3.5 of the framework. IIS shows only CLR versions and there is only 2.0 and 4.0 versions. .NET 3.5 uses CLR 2.0, so that's what you should pick. Try using extensions with your routes and registering this extension with IIS as shown in the guide if extensionless urls doesn't work for you (normally they should if you map the aspnet_isapi filter to all requests). – Darin Dimitrov Aug 23 '11 at 15:42
  • Even i follow the process as per the guided one the issue remains same – Developer Aug 24 '11 at 08:27