I've refactored some of my View's javascript out into .js files alongside the views (not in the Scripts folder off root).
By default, the handler in web.config for the views stops these being loaded:
<add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler"/>
However, I want to override this to allow the browser to request .js files from this location.
Does anyone know how I can do this?
Thanks, Mark.