ASP中的异常处理怎么写,类似于C的try{...}  catch{...}
--------------------------------------------------------------- 
 
on  error  resume  next 
 
.... 
 
if  err.number<>0  then   
   .... 
 
end  if