When I refresh or Ctrl+5 for few times continuously throws this error.Please help me...!
Actually Iam using a Url in my JS to get the Ip...When refreshing the page continuesly Its unable to get the Ip I think.So it shows the error.
here is the code How I get the IP
string url = string.Format("http://api.ipinfodb.com/v3/ip-city/?key={0}&ip={1}&format=json", APIKey, ipAddress);
using (WebClient client = new WebClient())
{
string json = client.DownloadString(url);
Location location = new JavaScriptSerializer().Deserialize<Location>(json);