views:

169

answers:

1

Does anyone else have problems with running URL routing projects in Visual Studio?

The Visual Studio Web server doesn't seem to want to play nice with URL routing. It doesn't invoke the engine at all in fact, which means you can't debug, and have to run the project out of IIS to get it work.

Is there a workaround for this?

Edit: By "URL routing" I mean the Microsoft framework in the "System.Web.Routing" namespace.

Edit: Using Web forms, not MVC.

+1  A: 

My guess is that it's not configured correctly for the version of IIS that you are running locally.

Here is a good resource for setting it up. Can you post code?

Chris Lively