C Cylix Feb 1, 2007 #1 As the title, I have a url, how can I check is it avalible any more? Thanks!!!
T Tom Shelton Feb 1, 2007 #2 As the title, I have a url, how can I check is it avalible any more? Thanks!!! Click to expand... use System.Net.WebClient to access the url. See if you get a valid response.
As the title, I have a url, how can I check is it avalible any more? Thanks!!! Click to expand... use System.Net.WebClient to access the url. See if you get a valid response.
G Guest Feb 1, 2007 #3 Hi Cylix By performing a webrequest and check what you get back Dim WC As New System.Net.WebClient() Dim sPage As String = New System.Text.UTF8Encoding().GetString(WC.DownloadData("http:\\www.google.com"))
Hi Cylix By performing a webrequest and check what you get back Dim WC As New System.Net.WebClient() Dim sPage As String = New System.Text.UTF8Encoding().GetString(WC.DownloadData("http:\\www.google.com"))