Reputation: 5370
if i have the following
Url.Action("Index", "Settings");
How do ensure that the url is alway
"Settings/Index" and not "Settings"
Upvotes: 0
Views: 70
Reputation: 887285
Remove action = "Index" from your routing table in Global.asax.
action = "Index"
Upvotes: 2