I am trying to get a user's thumbnail from another intranet site but some of them do not follow the pre-defined format meaning I would want to load up a default thumbnail instead.
Whats the best way to check if an image URL is valid?
WebRequest webRequest = WebRequest.Create(url);
WebResponse webResponse;
try
{
webResponse = webRequest.GetResponse();
}
catch //If exception thrown then couldn't get response from address
{
return 0;
}
return 1;
Depending on how you are getting your images a variation of this might work
This is how you would do it in ASP.NET.
Designer -
Code Behind (c#)
This works perfectly for me.