You are designing an ASP.NET Web application that contains both publicly accessible
pages and administrative pages. You need to handle errors differently for publicly
accessible pages and administrative pages, and you must use common code for each type
of page. Which approach should you recommend?
A.
Use the Application_Error method in the Global.asax.cs file.
B.
Use subclasses of System.Web.UL.Page with Page_Error methods.
C.
Use the Page_Error method in each of the master pages.
D.
Use the Page_Error method in each of the publicly accessible pages and administrative
pages.