请问,ASP连接可以做到 on error 吗?
众所周知,用PHP去连接数据库(MYsql 或者MSSQL也好)
都有or die( "不能连接到 ")
的错误提示功能,请问,ASP如何实现呢?
------解决方案--------------------看用什么脚本写
VBS:
On Error Resume Next
...
conn.open
If Err.Number <> 0 Then
response.write Err.description
End If
JS:
try{
conn.open;
}
catch(e){
Response.Write(e);
}