Hi, I'm working on an MVC application and I have and admin area... So what I need is:
When user makes request to admin (for example "/Admin/Post/Add") I need to map this to controller AdminPost and action Add... is it possible?
|
1
|
Hi, I'm working on an MVC application and I have and admin area... So what I need is: When user makes request to admin (for example "/Admin/Post/Add") I need to map this to controller AdminPost and action Add... is it possible? |
||
|
|
|
|
If your controller is named AdminPostController and you want it to map to '/Admin/Post/Add' then you can use:
Note the use of the parameter defaults. If your controller is named AdminController and you just wanted to separate the request method then use the default:
Which will map '/Admin/Add/' to the controller:
Note the use of [AcceptVerbs] to identify which method to invoke for POST requests and GET requests. See Scott Gu's blog for more details |
||||||||
|