admin_right.aspx.cs

来自「一个开源企业网站」· CS 代码 · 共 47 行

CS
47
字号
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Net;

public partial class Admin_Admin_Right : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

        if (Session["UserID"] == "" || Session["UserID"] == null)
        {
            Response.Write("<script language=javascript>window.alert('为了系统安全,请您重新登陆');window.location.href=('Admin_Login.aspx')</script>");
        }
        //获取服务器IP
        string name = Dns.GetHostName();
        IPHostEntry myip = Dns.GetHostByName(name);
        foreach (IPAddress ip in myip.AddressList)
        {
            this.LabIp.Text = ip.ToString();
        }
      
        //获取名称
        string pcname = Dns.GetHostName();
        this.LabName.Text = pcname.ToString();
        //iis
        this.LabIis.Text = Request.ServerVariables["SERVER_SOFTWARE"];
        //时间
        this.LabTime.Text = DateTime.Now.ToString();
        //路径
        this.LabPatch.Text = Server.MapPath(Request.ServerVariables["SCRIPT_NAME"]);
        //端口
        this.Labdk.Text = Request.ServerVariables["SERVER_PORT"];
        //系统
        this.LabWin.Text = Environment.OSVersion.Platform.ToString() + " " + Environment.OSVersion.Version.ToString();
        //超时
        this.LabSe.Text = Server.ScriptTimeout.ToString() ;
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?