2

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?

4

1 回答 1

0

作为快速修复,您可以使用 path="*.JPG" 获得此处理程序的副本

于 2013-05-24T13:14:33.443 回答