|
Re: Database Connection Error Message
Hi Monie,
Have you tried using something like this
- HTML: Select all
<%
If Err.number <> 0 then 'if there is an error
response.write Err.number 'write out the error number
response.write Err.source 'write out the error source
response.write Err.description 'write out the error description
End If
%>
I'm not entirely sure it will produce the same kind of output as the php code you've posted.
Last edited by Phil; Oct 29th, 2007 at 15:13.
|