How can i create a sub-controller in ASP.NET MVC? i.e:
In controller's directory i have a controller named Users.Fine.//GET:/Users/Index
Inside controlles folder i have a subfolder named Groups,inside that subfolder i have a directory name Account,and inside Account i have a controller named Group.
So,the URL should be: GET:/Groups/Account/Index
Correct? But it doenst work,cant find that URL. It expects:GET:Groups/Index
Any ideias?