J
Jeff S
I'm looking for suggestions on how to handle the situation in which some
error occurs and I need to tell the user something about it. I'm currently
developing error handling in the DAL and currently handle most of the likely
runtime error scenarios there. What I need to ensure is that the user sees
something informative for scenarios in which, for example, a connection to
the database could not be established in the DAL, so the product catalog
would appear to be empty.
Does the built-in customizable error page feature of ASP.NET kick in even
when I handle an error (i.e, in a Try... Catch... Finally block)?
What are some alternatives to the built-in customizable error page feature
for accomplishing what I want... I don't think I could do a
Response.Redirect from the DAL - so what can I do to let the user know when
something went wrong in the DAL? (note: the DAL is in the same assembly as
the presentation layer in this scenario).
Thanks!
error occurs and I need to tell the user something about it. I'm currently
developing error handling in the DAL and currently handle most of the likely
runtime error scenarios there. What I need to ensure is that the user sees
something informative for scenarios in which, for example, a connection to
the database could not be established in the DAL, so the product catalog
would appear to be empty.
Does the built-in customizable error page feature of ASP.NET kick in even
when I handle an error (i.e, in a Try... Catch... Finally block)?
What are some alternatives to the built-in customizable error page feature
for accomplishing what I want... I don't think I could do a
Response.Redirect from the DAL - so what can I do to let the user know when
something went wrong in the DAL? (note: the DAL is in the same assembly as
the presentation layer in this scenario).
Thanks!