I have some new map routs but I want to change strings in url, for example in this mapping:
mysite/News/More/13
routes.MapRoute(
name: "IssueNews",
url: "News/More/{newsId}",
defaults: new
{
controller = "News",
action = "More",
newsId = UrlParameter.Optional
}
);
I want to use the title of news in my url and change it to this:
mysite/News/{news title here}
any suggestion?