c#如何根据url获取ip地址

兄弟在线求帮请讲解下,c#如何根据url获取ip地址
最新回答
就是这个范儿╮

2024-06-22 01:55:47

IPHostEntry hostInfo = Dns.GetHostByName("
www.baidu.com
");
Response.Write(hostInfo.AddressList[0].ToString());
需要引用 using System.Net;
佐佐木惠理

2024-06-22 00:40:48

//获取URL地址
string url = Request.Url.ToString();
txtUrl.Text = url;
//获取IP地址
string ips= Request.UserHostAddress.ToString();
脸滚键盘抬头懵

2024-06-22 00:54:44

HttpContext.Current.Request.Url.PathAndQuery获取当前URL

Page.Request.UserHostAddress 获取当前IP地址
皮比墙厚

2024-06-22 00:45:16

调用DNS进行解析吧