处理.一般的try catch..和winform一样.
try{
发生异常的代码;
}
catcha(Exception ex)
{
threw ex;
//在web页面代码页的话
//Page.ClientScript.RegisterStartupScript(this.GetType(), "jse", "alert('" + ex.Message + "')", true);
}
try
{
}
catch(Exception ex)
{
//记录异常到数据库或txt
输出错误原因或转向统一的错误页面
}
}
我现在的做法是让exception尽可能在UI端抛出,所以只要在Application_Error那里catch就可以了