ASP 判断一个网站是否可以正常访问
答案:1 悬赏:20 手机版
解决时间 2021-03-22 21:16
- 提问者网友:皆是孤独
- 2021-03-22 06:05
ASP 判断一个网站是否可以正常访问
最佳答案
- 五星知识达人网友:白昼之月
- 2021-03-22 06:56
function getXML(URL)
{
var xmlhttp = new ActiveXObject("microsoft.xmlhttp");
xmlhttp.Open("GET",URL, false);
try
{
xmlhttp.Send();
}
catch(e){}
finally
{
var result = xmlhttp.responseText;
if(result)
{
if(xmlhttp.Status==200)
{
return(true);
}
else
{
return(false);
}
}
else
{
return(false);
}
}
}
还有一个方法
这样是不是更完善呢。
。。。
public string getUrltoHtml(string Url)
{
try
{
System.Net.WebRequest wReq = System.Net.WebRequest.Create(Url);
System.Net.WebResponse wResp =wReq.GetResponse();
if ( wResp != null )
Response.Write("访问成功");
}
catch(System.Exception ex)
{
throw ex;
}
}
{
var xmlhttp = new ActiveXObject("microsoft.xmlhttp");
xmlhttp.Open("GET",URL, false);
try
{
xmlhttp.Send();
}
catch(e){}
finally
{
var result = xmlhttp.responseText;
if(result)
{
if(xmlhttp.Status==200)
{
return(true);
}
else
{
return(false);
}
}
else
{
return(false);
}
}
}
还有一个方法
这样是不是更完善呢。
。。。
public string getUrltoHtml(string Url)
{
try
{
System.Net.WebRequest wReq = System.Net.WebRequest.Create(Url);
System.Net.WebResponse wResp =wReq.GetResponse();
if ( wResp != null )
Response.Write("访问成功");
}
catch(System.Exception ex)
{
throw ex;
}
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯