.aspx vs .ashx MAIN difference

Page is a special case handler. Generic Web handler (*.ashx, extension based processor) is the default HTTP handler for all Web handlers that do not have a UI and that include the @WebHandler directive. ASP.NET page handler (*.aspx) is the default HTTP handler for all ASP.NET pages. Among the built-in HTTP handlers there are also … Read more

tech