i have two controllers with the same name in different sub folder My Controllers looks like
- Controllers
- api
- UserController
- help
- UserController
- api
I want to access my first controller when the user requests http://mysite/api/User/Index
and access my second controller when the user requests http://mysite/help/User/Index
how to configure routing in Global.asax and how the views folders will look like?
will it look like?
- Views
- User
- api
- Index
- help
- Index
- api
- User
Thanks and Regards.