异常处理 – 过滤elmah中的异常文本

前端之家收集整理的这篇文章主要介绍了异常处理 – 过滤elmah中的异常文本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法使用异常消息过滤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>
原文链接:https://www.f2er.com/html/232368.html

猜你在找的HTML相关文章