LogList.aspx.cs 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Web;
  6. using System.Web.UI;
  7. using System.Web.UI.WebControls;
  8. namespace LYFZ.WanYuKeFu
  9. {
  10. public partial class LogList : System.Web.UI.Page
  11. {
  12. public string tempLogs = "日志功能未来开启";
  13. public string ddomaineList = "暂无待调试加密锁域名";
  14. protected void Page_Load(object sender, EventArgs e)
  15. {
  16. if (Global.IsOpenLogs)
  17. {
  18. tempLogs = "日志功能已开启";
  19. }
  20. if (Request.QueryString["logs"] != null && Request.QueryString["logs"].ToString() == "del")
  21. {
  22. Global.DeleteWeiXinlogs();
  23. Response.Write("<script>document.location='LogList.aspx';</script>");
  24. }
  25. else if (Request.QueryString["logs"] != null && Request.QueryString["logs"].ToString() == "y")
  26. {
  27. Global.IsOpenLogs = true;
  28. Response.Write("<script>document.location='LogList.aspx';</script>");
  29. }
  30. else if (Request.QueryString["logs"] != null && Request.QueryString["logs"].ToString() == "n")
  31. {
  32. Global.IsOpenLogs = false;
  33. Response.Write("<script>document.location='LogList.aspx';</script>");
  34. }
  35. if (Request.QueryString["type"] != null && Request.QueryString["type"].ToString() == "add" && Request.QueryString["ddomaine"] != null)
  36. {
  37. string ddomaine = Request.QueryString["ddomaine"].ToString();
  38. if (!Global.LogsDongleDomainList.Contains(ddomaine))
  39. {
  40. Global.LogsDongleDomainList.Add(ddomaine);
  41. Response.Write("<script>document.location='LogList.aspx';</script>");
  42. }
  43. }
  44. else if (Request.QueryString["type"] != null && Request.QueryString["type"].ToString() == "del")
  45. {
  46. Global.LogsDongleDomainList.Clear();
  47. Response.Write("<script>document.location='LogList.aspx';</script>");
  48. }
  49. if (Global.LogsDongleDomainList.Count > 0)
  50. {
  51. ddomaineList = "";
  52. foreach (string ddomaine in Global.LogsDongleDomainList)
  53. {
  54. ddomaineList += ddomaine + "<br />";
  55. }
  56. }
  57. }
  58. }
  59. }