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. 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. |
|