Should MVC Ajax requests be mapped the same way as regular requests in a MVC framework?
For example: Say I want to check and see if a username is available via ajax and have a method on a controller that performs this scope of work. Do I simply add a route that maps the ajax request to a particular controller method, or is there a better way to achieve this?
Thanks in advance.