如何检测用户的互联网连接?

时间:2013-06-24 08:19:08

标签: asp.net

我有一个网页(ASP.NET),客户端(只有一个)连接到它,注册后我将它的IP地址保存到文本文件中。
我想要做的是如果这个客户关闭了网页,我想检测它并清除我的文本文件。

1 个答案:

答案 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");
    }  
}