Visual Basic Code , VB.NET Code, VB Code
  Home   :  Code   :  Forums   :  Submit   :  Mailing List   :  About   :  Contact


check internet connection not internal network connection


check internet connection not internal network connection

Author
Message
john_zakaria
john_zakaria
Forum God
Forum God (4K reputation)Forum God (4K reputation)Forum God (4K reputation)Forum God (4K reputation)Forum God (4K reputation)Forum God (4K reputation)Forum God (4K reputation)Forum God (4K reputation)Forum God (4K reputation)

Group: Forum Members
Posts: 10, Visits: 17
i am making an application that must check before running the internet connection



i am using this code



try

{



req = (HttpWebRequest)WebRequest.Create("http://www.1aeg.net");

resp = (HttpWebResponse)req.GetResponse();



if (resp.StatusCode.ToString().Equals("OK"))

{

connected_check = "1";

}

else

{

connected_check = "2";

}

}

catch (Exception exc)

{

connected_check = "2";

}









when i logged out from the server the internet connection will be disabled but the internal network in the office is still connected.







when i logged off or i did not enters the user name and password the internet access is not available but the internal network is available through the server.





how i can detect if the internet access is available regardless the internal network connection in the office????
AmrMohallel
AmrMohallel
Forum God
Forum God (3.3K reputation)Forum God (3.3K reputation)Forum God (3.3K reputation)Forum God (3.3K reputation)Forum God (3.3K reputation)Forum God (3.3K reputation)Forum God (3.3K reputation)Forum God (3.3K reputation)Forum God (3.3K reputation)

Group: Forum Members
Posts: 7, Visits: 5
The default value for HttpResponse.StatusCode is 200 if its successfully established, I've never seem the ('OK') method u're using.



Anyway, Try this



protected void Page_Load(object sender, EventArgs e)

{

if (Response.StatusCode != 200)

{

Response.Write("Couldn't connect to the internet");

}

}



Regards.

Amr Mohallel

University of Sunderland

Faculty of Applied Sciences - Applied Business Computing
GO


Similar Topics


Reading This Topic


Login
Existing Account
Email Address:


Password:


Social Logins

Select a Forum....

















A1VBCode Forums


Search