You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
544 B

  1. using Swift.DAL.ApplicationLogs;
  2. using Swift.web.Library;
  3. using System;
  4. namespace Swift.web.ApplicationLog
  5. {
  6. public partial class ErrorDetail : System.Web.UI.Page
  7. {
  8. private readonly LogDAO lg = new LogDAO();
  9. protected void Page_Load(object sender, EventArgs e)
  10. {
  11. LoadErrorData();
  12. }
  13. private void LoadErrorData()
  14. {
  15. var dr = lg.GetErrorDetails(GetStatic.ReadQueryString("id", ""));
  16. error.InnerHtml = dr["errorDetails"].ToString();
  17. }
  18. }
  19. }