I am using the username and password to connect to the database...the oracle backend already has a security module built into it, with sufficient permissions to enable or disable access to the appropriate forms, based on who logs in....
I've tried to do what you're suggesting, but once again, the entire site is done in javascript, not vbscript, and I can't seem to get the syntax correct to perform what you're suggesting.
Main Topics
Browse All Topics





by: GaryC123Posted on 2003-06-16 at 14:08:54ID: 8735249
Do you mean you're using the username and password TO connect to the database?
You could use On Error Resume Next
then after attempting to open the database put in some code like
If Err.Number=100 then ' or whatever error number is returned
' do something
else
' process rest of page
End If
You can use response.write err.number to find out what error number is returned