I have this handler in my web.config:
<add name="handler1" path="*.jpg" verb="*" type="ImageHandler" resourceType="Unspecified" preCondition="integratedMode" />
Problem is the path is case sensitive. I want this handler to also pickup path like *.JPG. Is there any way to make the above line case insensitive?