vote up 1 vote down star
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?

flag

64% accept rate

1 Answer

vote up 3 vote down check

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.