public string CLIENTIP { get { System.Net.IPHostEntry host = System.Net.Dns.GetHostEntry(System.Net.Dns.GetHostName()); string clientIP = string.Empty; for (int i = 0; i < host.AddressList.Length; i++) { // AddressFamily.InterNetworkV6 - IPv6 if (host.AddressList[i].AddressFamily == System.Net.Sockets.AddressFamily.InterNetwork) { clientIP = host.AddressList[i].ToString(); } } return clientIP; } }
'프로그래밍 > .NET' 카테고리의 다른 글
[C#]LINQ를 이용하여 XML 데이터 생성 (0) | 2013.08.21 |
---|---|
[ASP.NET]페이지 로드 후 몇초 후 다른 페이지로 이동 (0) | 2013.05.14 |
[C#]string -> DateTime (0) | 2013.05.08 |
[C#]수행 시간측정 (0) | 2013.04.16 |
[ASP.NET]FindControl not working in content page (0) | 2013.04.06 |