本文介绍了获取全局处理程序类中的最后一个服务器异常行号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好,
我在Web应用程序中工作.我收到最后一个服务器错误.
我想获得Exception生成的Class,Line,Method name.请帮帮我.
Hi All,
I am working in web Application . I get last server Error .
I want to get Exception generated Class ,Line,Method name . Please help me.
推荐答案
catch (Exception ex)
{
Response.Write(ex.Message+ "Inner Exception"+ex.InnerException+"Object"+ex.Source +"Stack Trace"+ex.StackTrace+"target Site"+ex.TargetSite);
}
在try and catch块中使用此代码,您可以获得有关错误的详细信息.
希望对您有帮助
use this code in your try and catch block and you can get detailed information about your Error.
Hope this helps
这篇关于获取全局处理程序类中的最后一个服务器异常行号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!