asp.net mvc - What is routes.IgnoreRoute("{resource}.axd/{*pathInfo}") -
what routes.ignoreroute("{resource}.axd/{*pathinfo}")
i cannot find .axd file in project, can remove route rule?
.axd files don't exist physically. asp.net uses urls .axd extensions (scriptresource.axd , webresource.axd) internally, , handled httphandler.
therefore, should keep rule, prevent asp.net mvc trying handle request instead of letting dedicated httphandler it.
Comments
Post a Comment