gpt4 book ai didi

c# - 在 ASP.NET 中获取服务器的 IP 地址?

转载 作者:IT王子 更新时间:2023-10-29 04:04:02 26 4
gpt4 key购买 nike

如何获取调用我的 ASP.NET 页面的服务器的 IP 地址?我看过有关 Response 对象的内容,但对 c# 还是很陌生。非常感谢。

最佳答案

这应该有效:

 //this gets the ip address of the server pc

public string GetIPAddress()
{
IPHostEntry ipHostInfo = Dns.GetHostEntry(Dns.GetHostName()); // `Dns.Resolve()` method is deprecated.
IPAddress ipAddress = ipHostInfo.AddressList[0];

return ipAddress.ToString();
}

http://wec-library.blogspot.com/2008/03/gets-ip-address-of-server-pc-using-c.html

 //while this gets the ip address of the visitor making the call
HttpContext.Current.Request.UserHostAddress;

http://www.geekpedia.com/KB32_How-do-I-get-the-visitors-IP-address.html

关于c# - 在 ASP.NET 中获取服务器的 IP 地址?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/646525/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com