Search code examples
asp.netroutesvwdexpress

System.Web.Routing missing in Visual Web Developer


I have installed Visual Web Developer 2008, the .net framework 3.5 but when i try to include System.Web.Routing intellisense can't find it and if i type it by hand it says it does not exist.. any suggestions?


Solution

  • The System.Web.Routing.dll assembly is part of .NET 3.5 Service Pack 1, so you'll have to install that if you haven't already (you may also have it if you installed the ASP.NET MVC beta). After that, you should be able to add it like any other .NET reference.

    It shows up for me between System.Web.RegularExpressions and System.Web.Services on the ".NET" tab of the "Add Reference" dialog.