using System; using System.Collections; using System.ComponentModel; using System.Web; using System.Web.SessionState; namespace SqlWebAdmin { public class Global : System.Web.HttpApplication { protected void Application_Error(Object sender, EventArgs e) { Application.Add("Error", Server.GetLastError()); } } }