usingSystem.Net.NetworkInformation;

Pingp=newPing();
PingReplypr;
stringbl;
pr=p.Send("119.75.218.45");//百度的IP

if(pr.Status!=IPStatus.Success)//如果连接不成功
{
bl="未联网";
}
else
{
bl="已联网";
}

测试IP地址可以,换成网址不行(因为有些网站防Ping)。