Reputation: 91
I'm adding one new route to RouteCollection
like this:
routes.Add(new Route("{*data}", new MyRoutehandler()));
How can I specify the controller name and action name inside this MyRouteHandler
(my own route handler)?
Upvotes: 0
Views: 134