일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- aspnet
- javascript
- IIS
- 이클립스
- CONVERT()
- c#
- MS
- 단축키
- Excel
- attr()
- ASP
- Winform
- windows
- microsoft
- MSSQL
- 윈폼
- 마이크로소프트
- SSRS
- 비주얼스튜디오
- 엑셀
- 윈도우
- replace()
- DataGrid
- 태그를 입력해 주세요.
- jQuery
- oracle
- 자바스크립트
- 리포팅서비스
- 오라클
- 프로시저
Archives
- Today
- Total
목록IPHostEntry (1)
DJ메탈짱™의 Free Style
C# 클라이언트의 IPv4 정보 가져오기, IPHostEntry, System.Net, System.Net.Sockets
클라이언트의 IPv4 정보 가져오기 using System.Net;using System.Net.Sockets; /// /// 사용자(Client)의 IP 가져오기/// /// private string GetIP(){IPHostEntry host = Dns.GetHostEntry(Dns.GetHostName()); string ipAddr = string.Empty; for (int i = 0; i < host.AddressList.Length; i++) { if (host.AddressList[i].AddressFamily == AddressFamily.InterNetwork) { ipAddr = host.AddressList[i].ToString();}}return ipAddr;} 출처 : http..
일(job)/MS(Microsoft)
2016. 5. 27. 11:22