Example #1
0
 public static bool GetHtmlPage(string url)
 {
     try
     {
         string str = Utils.HttpGet(url);
         return("Error_IDE".Equals(str));
     }
     catch (Exception ex) {
         return(false);
     }
 }