62,244
社区成员




try{
xxxxxxx
}catch(Exception)
{
Respose.Write("<script>alert('出现错误了。请重新尝试,如不行请联系管理员!。');</script>");
}
try{
try{
//这里出错了
}catch(Exception ex){
//怎样在这里设定Ex.message的值呢?
throw new Exception(ex.Message + "your new message"); /?这样吗?
}
}
catch(Exception){
//然后,我想在这里以弹框的形式弹出刚刚设定的值。
}