我有一个网页(ASP.NET),客户端(只有一个)连接到它,注册后我将它的 IP 地址保存到一个文本文件中。
我想要做的是如果这个客户端关闭了网页,我想检测它并清除我的文本文件。
问问题
1302 次
1 回答
1
使用这个你可以检查连接
System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable()
例子: -
public static void **testInternetConnection**()
{
if (System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable())
{
System.Windows.MessageBox.Show("This computer is connected to the internet");
}
else
{
System.Windows.MessageBox.Show("This computer is not connected to the internet");
}
}
于 2013-06-24T08:29:00.403 回答