How do I check if a page exists without wrapping it in a try catch
Dim myWebResponse As HttpWebResponse = CType(myWebRequest.GetResponse(), HttpWebResponse)
If the page does not exist then I get a 404 exeption when myWebRequest.GetResponse(
) fires.
Isnt there some thing like myWebRequest.DoesPageExist() that returns true of false or the status?