Global.asax.cs 632 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Web;
  4. using System.Web.Security;
  5. using System.Web.SessionState;
  6. namespace CLIP.eForm.Consent.Web
  7. {
  8. public class Global : System.Web.HttpApplication
  9. {
  10. protected void Application_Start(object sender, EventArgs e)
  11. {
  12. CLIP.eForm.Server.Diagnostics.LogHelper.InitLogging();
  13. }
  14. protected void Application_Error(object sender, EventArgs e)
  15. {
  16. }
  17. protected void Application_End(object sender, EventArgs e)
  18. {
  19. CLIP.eForm.Server.Diagnostics.LogHelper.FinalLogging();
  20. }
  21. }
  22. }