InterviewSolution
Saved Bookmarks
| 1. |
Why to use "{resource}.axd/{*pathInfo}" in routing in ASP.Net MVC? |
|
Answer» Using this default route - {resource}.axd/{*pathInfo}, we can prevent the requests for the web resources files like - WebResource.axd or ScriptResource.axd from passing to a controller. |
|