Link to home
Start Free TrialLog in
Avatar of drujames
drujames

asked on

ping an IP in vb.net

I am a new programmer. My employeer has asked me to come up with a way to be able to ping an ip and send the results to a webpage. I would like to accomplish this using vb.net

Eventually I want to have multipul ip's on one page so that I can monitor all my ip's at once on once page.

all the results have to show for now is the following

www.idca.com = bytes 32 time=10ms

thanks for your help
Andrew
Avatar of sagacitysolutions
sagacitysolutions
Flag of United States of America image

See if this helps

http://vbcity.com/forums/topic.asp?tid=44997

Look for the NetTools.Zip link

Avatar of PonyboyCurtis00
PonyboyCurtis00

that is not quite what i was looking for.

This does display the results of the ping, only success or fail.

need it to display the actual results
ASKER CERTIFIED SOLUTION
Avatar of Justin_Case_77
Justin_Case_77

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
These are great. But not quite what I am looking for

I am new to programming. So I may not have all my verbage right.

I am looking for a way that I can have a gui free page. No start or stop buttons, when the page loads I get the results of the ip ping. basically below is what I would like the page to look like when it loads.

IP www.idca.com

Reply from 199.76.24.20  bytes=32  time=139ms
Reply from 199.76.24.20  bytes=32  time=139ms
Reply from 199.76.24.20  bytes=32  time=139ms


IP 63.247.90.146

Reply from 63.247.90.146  bytes=32  time=23ms
Reply from 63.247.90.146  bytes=32  time=23ms
Reply from 63.247.90.146  bytes=32  time=23ms

I want to be able to have multipul ip's on a single page, that automatically start when the page loads, and that loop continuously and only stop when I close the page. Hope I have explained this better.

I have tried all the gui type programs and they will not work. I want this eventually to fit into my company intranet so that when any one clicks on the ip status page they do not have to do anything more to see the results.

 Because I am learning I also need some pretty good instructions on how to make this happen. I am not afraid to learn but I need good instructions. Thanks for your help.

ANdrew
Avatar of drujames

ASKER

These are great. But not quite what I am looking for

I am new to programming. So I may not have all my verbage right.

I am looking for a way that I can have a gui free page. No start or stop buttons, when the page loads I get the results of the ip ping. basically below is what I would like the page to look like when it loads.

IP www.idca.com

Reply from 199.76.24.20  bytes=32  time=139ms
Reply from 199.76.24.20  bytes=32  time=139ms
Reply from 199.76.24.20  bytes=32  time=139ms


IP 63.247.90.146

Reply from 63.247.90.146  bytes=32  time=23ms
Reply from 63.247.90.146  bytes=32  time=23ms
Reply from 63.247.90.146  bytes=32  time=23ms

I want to be able to have multipul ip's on a single page, that automatically start when the page loads, and that loop continuously and only stop when I close the page. Hope I have explained this better.

I have tried all the gui type programs and they will not work. I want this eventually to fit into my company intranet so that when any one clicks on the ip status page they do not have to do anything more to see the results.

 Because I am learning I also need some pretty good instructions on how to make this happen. I am not afraid to learn but I need good instructions. Thanks for your help.

ANdrew
a good start for you is here ==> http://www.c-sharpcorner.com/network/ping.asp
you'll find a C# source code to ping an IP adress.
You'll simply have to use it as a "code behind" source code in your asp page with minor change...

Hope this helps....