在 catch 里面使用了 response.redirect(url,true)
例:
try
{
try
{
int i = 0;
int j = 10 / i;
}
catch (Exception ex)
{
Response.Redirect("http://www.163.com", false); //改為 true 則會 觸發異常最終跳轉到 ifeng.com
}
}
catch (Exception ex)
{
Response.Redirect("http://www.ifeng.com", true);
}