|
string strUrl = "http://iframe.ip138.com/ic.asp";//获得IP的网址
Uri uri = new Uri(strUrl);
WebRequest webreq = WebRequest.Create(uri);
Stream s = webreq.GetResponse().GetResponseStream();
StreamReader sr = new StreamReader(s, Encoding.Default);
string all = sr.ReadToEnd(); //读取网站返回的数据 格式:您的IP地址是:[x.x.x.x]
int index_1 = all.IndexOf('省'); // 第 1 个特殊符号的位置
int index_2 = all.IndexOf('市'); // 第 2 个特殊符号的位置
string substr = all.Substring(index_1 + 1, index_2 - index_1 - 1);
// Label3.Text = substr;
Weather_DQ.Text = substr;
if (!IsPostBack)
{
disp_weather(substr);
}
sr.Close();
}
请问我怎么样修改才能在客户端获取客户端的地址。这里只获取了服务器的地址。
补充内容 (2014-6-19 15:23):
或者,站长能不能把论坛上个人空间里的个人资料里的活跃概况的代码共享一下啦,万分感谢。 |
|