ST_contraller.aspx.cs
上传用户:wyx_1982
上传日期:2020-04-18
资源大小:699k
文件大小:1k
源码类别:

SCSI/ASPI

开发平台:

Others

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Web;
  7. using System.Web.SessionState;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.HtmlControls;
  11. namespace ST_GROUP.EnterpriseOnlineInfoManage
  12. {
  13. /// <summary>
  14. /// ST_contraller 的摘要说明。
  15. /// </summary>
  16. public partial class ST_contraller : System.Web.UI.Page
  17. {
  18. protected void Page_Load(object sender, System.EventArgs e)
  19. {
  20. if (Request.Params["cname"] != null)
  21. {
  22. string usercom = Request.Params["cname"];
  23. if (usercom == "logout")
  24. {
  25. Session.Remove("name");
  26. Response.Redirect("ST_main.aspx");
  27. }
  28. if (usercom == "noadmin")
  29. {
  30. Response.Write("请登录后操作!<a href=ST_Admin_login.aspx target=_parent><font color=#ff0000>管理登录</font></a>");
  31. //Response.Redirect("ST_Admin_login.aspx");
  32. }
  33. if (usercom == "adminout")
  34. {
  35. Session.Remove("admin");
  36. Response.Redirect("ST_Admin_login.aspx");
  37. }
  38. }
  39. // 在此处放置用户代码以初始化页面
  40. }
  41. #region Web 窗体设计器生成的代码
  42. override protected void OnInit(EventArgs e)
  43. {
  44. //
  45. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  46. //
  47. InitializeComponent();
  48. base.OnInit(e);
  49. }
  50. /// <summary>
  51. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  52. /// 此方法的内容。
  53. /// </summary>
  54. private void InitializeComponent()
  55. {    
  56. }
  57. #endregion
  58. }
  59. }