in visual basic how can i tell if a web link works or not?

You could establish a socket class and manually send a HEAD request for the page to the webserver, that would do it, without having to download all the content on the page.

The easier method would be to use WebClient to download the whole page and catch an exception if the page wasn't found. This would be slower.
 
Back
Top