System.Web.HttpRequest
protected void Page_Load(object sender, EventArgs e){ Label1.Text = Request.UserHostAddress; Label2.Text = Session.SessionID;}
HttpRequest Request = new HttpRequest();string ip = Request.UserHostAddress;string sid = Session.SessionID;string wert = Session["variable"];