adspace
What is the use of the default route {resource}.axd/{*pathinfo} ?
Answer Posted / Ranjit Kumar
The default route {resource}.axd/{*pathinfo} is used in ASP.NET for managing verbs and extension-less URLs. The * symbol catches any string, while .axd is a common suffix for ASP.NET extensions. This route is typically registered automatically by the framework but can be customized.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers