Home All Groups Group Topic Archive Search About
Author
15 Apr 2005 9:14 PM
TOM
Hello,
My question is how do I give a error message to the user
that their user name or password is wrong?
If anyone know of a book or something that deals with this
type of thing. That would be great too.

Thanks
Tom

Author
16 Apr 2005 12:08 AM
Terry Olsen
Assuming you just want to send the message back to the user..

Try
sqlLogin
catch ex as SqlException
response.write(ex.Message)
catch ex as Exception
response.write(ex.Message)
End Try

Show quoteHide quote
"TOM" <tb***@yahoo.com> wrote in message
news:09ae01c54200$2c26f130$a501280a@phx.gbl...
> Hello,
> My question is how do I give a error message to the user
> that their user name or password is wrong?
> If anyone know of a book or something that deals with this
> type of thing. That would be great too.
>
> Thanks
> Tom