집 >백엔드 개발 >C#.Net 튜토리얼 >ASP.NET MVC C#에서 클라이언트의 IP 주소를 어떻게 얻나요?
네트워크의 모든 컴퓨터에는 고유 식별자가 있습니다. 마치 편지를 쓰는 것처럼 이메일을 보내기 위해 컴퓨터는 고유 식별자를 사용하여 데이터를 특정 대상으로 보냅니다. 네트워크상의 컴퓨터. 네트워크의 모든 컴퓨터를 포함하여 오늘날 대부분의 네트워크 인터넷에서 통신하는 방법의 표준으로 TCP/IP 프로토콜을 사용하는 인터넷 회로망. TCP/IP 프로토콜에서는 컴퓨터의 고유 식별자를 IP라고 합니다. 주소.
using System.Web.Mvc; namespace DemoMvcApplication.Controllers{ public class HomeController : Controller{ public string Index(){ string ipAddress = Request.UserHostAddress; return ipAddress; } } }
컨트롤러 외부, 즉 일반 클래스에서 IP 주소를 가져오려면 다음과 같이 하면 됩니다. 아래와 같습니다.
using System.Web; namespace DemoMvcApplication.Helpers{ public static class DemoHelperClass{ public static string GetIPAddress(){ string ipAddress = HttpContext.Current.Request.UserHostAddress; return ipAddress; } } }
using System.Web.Mvc; namespace DemoMvcApplication.Controllers{ public class HomeController : Controller{ public string Index(){ string ipAddress = Request.ServerVariables["REMOTE_ADDR"]; return ipAddress; } } }
애플리케이션을 로컬에서 실행하고 있으므로 로컬 호스트의 IP 주소는 ::1입니다. localhost라는 이름은 일반적으로 IPv4 루프백 주소 127.0.0.1로 확인되고 다음으로 확인됩니다. IPv6 루프백 주소::1
위 내용은 ASP.NET MVC C#에서 클라이언트의 IP 주소를 어떻게 얻나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!