views:

166

answers:

1

I'd like to occasionally map new routes to the RouteCollection during program execution long after the Global.asax RegisterRoutes() method had first executed.

How can I do this?

+3  A: 

It's possible, but the route collection is shared state in a multi-threaded app, so you have to get a lock. There's an example here.

Craig Stuntz