View Single Post
Old Oct 29th, 2007, 15:09   #2 (permalink)
Phil
Junior Member
 
Join Date: Aug 2007
Location: Haverhill
Posts: 40
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.
Phil is offline   Reply With Quote