twal
twal

Reputation: 7039

ASP.NET MVC on IIS 6 problems

I am trying to get MVC to work on IIS6 and am having issues.

I went through the steps on Haaked

http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx

I am trying to get the IIS6 Extension-less URLs to work

I have done the steps,and when I navigate to my site I get this error:

Could not load file or assembly 'System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.

any thoughts?

Upvotes: 0

Views: 340

Answers (1)

Andrew Lewis
Andrew Lewis

Reputation: 5254

Make sure "CopyLocal" is set to true on your System.Web.Mvc reference in Visual Studio.

Upvotes: 2

Related Questions