有没有办法使用异常消息过滤elma中的异常?
例子:
“System.Web.HttpException:请求超时.”我不想过滤掉所有HttpException,只过滤掉超时请求.
“System.Web.HttpException:超出了最大请求长度.”
我不想做的是为此编写自己的代码.那么使用buildin-web.config配置可以做到这一点吗?
谢谢!
解决方法
是的你可以.只需使用正则表达式来查询消息.有关如何比较异常消息的详细信息,请参阅下面的示例.
<errorFilter> <test> <!-- http://groups.google.com/group/elmah/t/cbe82cee76cc6321 --> <and> <is-type binding='Exception' type='System.Web.HttpException,System.Web,Version=2.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a' /> <regex binding='Exception.Message' pattern='invalid\s+viewstate' caseSensitive='false' /> <regex binding='Context.Request.UserAgent' pattern='Trident/4(\.[0-9])*' caseSensitive='false' /> </and> </test> </errorFilter>