我有一个网页(ASP.NET),客户端(只有一个)连接到它,注册后我将它的IP地址保存到文本文件中。
我想要做的是如果这个客户关闭了网页,我想检测它并清除我的文本文件。
答案 0 :(得分: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");
}
}