日期:2014-05-17 浏览次数:20506 次
WebClient web = new WebClient();
string s = web.DownloadString("http://wbmlw.zmipcam.net/Getip.asp");
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
///引用命名空间
using System.IO;
using System.Net;
using System.Text;
namespace WebApplication5
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
WebClient web = new WebClient();
string s = web.DownloadString("http://wbmlw.zmipcam.net/Getip.asp");
Label1.Text = s;
}
}
}