?? houtaiziliao.aspx.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;
public partial class houtai : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
//服務器類型
this.lblIp.Text = Request.ServerVariables["LOCAL_ADDR"];
//服務器的主機名
this.lblZhujiName.Text = Request.ServerVariables["LOGON_USER"];
//站點物理路徑
this.lblPath.Text = Request.ServerVariables["PATH_TRANSLATED"];
//服務器處理請求的端口
this.lblPort.Text = Request.ServerVariables["SERVER_PORT"];
//web服務器的名稱和版本
this.lblWebName.Text = Request.ServerVariables["SERVER_NAME"];
//協(xié)議的名稱和版本
this.Label5.Text = Request.ServerVariables["SERVER_PROTOCOL"];
//客戶端操作系統(tǒng)
this.Label6.Text = "Windows2000";
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -