I have this mvc route defined.
routes.MapRoute(
name: "Author",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Author", action = "Index", id = UrlParameter.Optional }
);
so my url will be something like this:
http://mysitename.com/Author/AuthorName - this should bring all quotes of the particular author. http://mysitename.com/Author/Authorname/QuoteID - this should bring a particular quote of that author.
My controller name is author controller. Is this feasible? If so how should I define the routes and action methods to accomplish this?