⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 admin_right.aspx.cs

📁 一个开源企业网站
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -