IP 주소는 출력에는
localhost / 127.0.0.1 / ::1 이렇게 3가지 방법이 있다 다 같은 것
TEST4.aspx
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="test4.aspx.cs" Inherits="FrmText.test4" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> </head> <body> <form id="form1" runat="server"> <div> IP 주소 얻기 <br / /> <asp:Label ID="Lable1" runat="server"></asp:Label> <br /> <asp:Label ID="Label2" runat="server"></asp:Label> <br /> <asp:Label ID="Label3" runat="server"></asp:Label> <br /> </div> </form> </body> </html> | cs |
TEST4.aspx.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace FrmText { public partial class test4 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { this.Lable1.Text = Request.UserHostAddress; this.Label2.Text = Request.ServerVariables["REMOTE_HOST"]; this.Label3.Text = Request.ServerVariables["REMOTE_ADDR"]; } } } | cs |
'ASP.NET' 카테고리의 다른 글
6. 닷넷 기초 (현재시간 출력하기) (0) | 2018.02.25 |
---|---|
5. 닷넷 기초 (표준 컨트롤러) (0) | 2018.02.25 |
3. 닷넷 기초 Request 개체 사용하기 (0) | 2018.02.24 |
2. 닷넷 기초 Response 객체 활용하기 (0) | 2018.02.24 |
1. 웹 프로젝트 만들기 (0) | 2018.02.24 |