I want to determine if a URL is valid without firing the server response of returning the page if it is. (ie: without consuming the web page).
I've found this very clever attempt but it doesn't seem to work at least on an MVC action without firing the action itself (which, incidentally, uses Selenium WebDriver and starts a FirefoxDriver instance which is how I know that the page is being consumed.)
Is there a way to say "Hey, server, I don't want the page but does it exist?" without the server actually trying to hand back the page?