ReportRouteHandler()
In the chapter on routing there are several examples of mapping route where "new ReportRouteHandler()" is one the parameters. What is that parameter for?
Here's the code snippet:
routes.MapRoute("MyRoute",
"reports/{year}/{month}", new ReportRouteHandler()));
Thanks
|