views:

17

answers:

1

if i have the following

Url.Action("Index", "Settings");

How do ensure that the url is alway

"Settings/Index" and not "Settings"

+2  A: 

Remove action = "Index" from your routing table in Global.asax.

SLaks