asp下多个域名后缀同时查询的域名查询系统

写的很简单,只是实现了功能 % Functionformaturl(yes) Ifmid(yes,5,1)''then yes1=left(yes,3) yes2=right(yes,cint(len(yes))-3) formaturl=yes1'.'yes2 else formaturl=yes endif EndFunction ''取得远程网页二进制源代码 FunctiongetBoy(url) ''onerrorresumenext SetobjXml=Server.CreateObj

作者: 来源: 时间: 17-11-23 15:20:09

写的很简单,只是实现了功能

<%
Function formaturl(yes)
 If mid(yes,5,1)<>"" then
 yes1 = left(yes,3)
 yes2 = right(yes,cint(len(yes))-3)
 formaturl = yes1 & "." & yes2
 else
 formaturl=yes
 end if
End Function 
''取得远程网页二进制源代码
Function getBoy(url)
 ''on error resume next
 Set objXml = Server.CreateObject("Microsoft.XmlHttp")
 with objXml
  .open "get",url,false,"",""
  .send
  getBoy = .responsebody
 end with
 getBoy = BytesToBstr(GetBoy,"GB2312")
 Set objXml = nothing 
end function

''处理二进制流代码
Function BytesToBstr(strBody,CodeBase)
        dim objStream
        set objStream = Server.CreateObject("Adodb.Stream")
        objStream.Type = 1
        objStream.Mode =3
        objStream.Open
        objStream.Write strBody
        objStream.Position = 0
        objStream.Type = 2
        objStream.Charset = CodeBase
        BytesToBstr = objStream.ReadText 
        objStream.Close
        set objStream = nothing
End Function
%>
未注册的域名如下
<%
''www.knowsky.com如果提交了查询
If Request.Form("yes") <> "" Then
 yes = replace(Request.Form("yes")," ","")  ''去除复选框字符串中的空格
 yes = split(yes,",")  ''实例化一个数组yes,将用逗号隔开的yes数组赋值给yes新数组

 For i = 0 to ubound(yes)   ''遍历数组循环开始
  url = "http://panda.www.net.cn/cgi-bin/Check.cgi?domain="&Request.Form("domain")&"&ext="&yes(i)
  wstr = getBoy(url)  ''获取查询后的源代码
  If instr(wstr,"未被注册的域名") <> 0 Then   ''判断是否为已经注册的域名
   Response.Write Request.Form("domain")&"."&formaturl(yes(i))&"<br><br><br><br>"  ''列出未注册的域名
  End If  
 Next
 response.Write "<p><p><p>已注册的域名如下:<br>"
 For i = 0 to ubound(yes)   ''遍历数组循环开始
  url = "http://panda.www.net.cn/cgi-bin/Check.cgi?domain="&Request.Form("domain")&"&ext="&yes(i)
  wstr = getBoy(url)  ''获取查询后的源代码
  If instr(wstr,"已被注册的域名") <> 0 Then   ''判断是否为已经注册的域名
   Response.Write Request.Form("domain")&"."&formaturl(yes(i))&"<br><br><br><br>"  ''列出已注册的域名
  End If  
 Next

Else 

%>
<form name="form1" method="post" action="">
  <p>
    <input name="domain" type="text" id="domain">
    <input type="submit" name="Submit" value="http://www.popasp.com/查询">
  </p>
  <p>
    <input name="yes" type="checkbox" id="yes" value="http://www.popasp.com/com"> 
    .com
    <input name="yes" type="checkbox" id="yes" value="http://www.popasp.com/net">
.net 
<input name="yes" type="checkbox" id="yes" value="http://www.popasp.com/org"> 
.org </p>
  <p>
    <input name="yes" type="checkbox" id="yes" value="http://www.popasp.com/comcn"> 
    .com.cn
    <input name="yes" type="checkbox" id="yes" value="http://www.popasp.com/netcn"> 
  .net.cn 
  <input name="yes" type="checkbox" id="yes" value="http://www.popasp.com/orgcn">
org.cn 
<input name="yes" type="checkbox" id="yes" value="http://www.popasp.com/govcn"> 
gov.cn </p>
  <p>
    <input name="yes" type="checkbox" id="yes" value="http://www.popasp.com/info"> 
    .info
    <input name="yes" type="checkbox" id="yes" value="http://www.popasp.com/biz">
.biz 
<input name="yes" type="checkbox" id="yes" value="http://www.popasp.com/tv"> 
.tv 
<input name="yes" type="checkbox" id="yes" value="http://www.popasp.com/cc"> 
.cc</p>
  <p>
    <input name="yes" type="checkbox" id="yes" value="http://www.popasp.com/cn"> 
    .cn 
    <input name="yes" type="checkbox" id="yes" value="http://www.popasp.com/name">
.name  </p>
</form>
<%
End If
%>
11
22
33
隐藏区块

会员注册

本功能为预留功能,暂不支持注册 ^_^

Login

社交帐号登陆

使用以下任意帐号可登陆本站

Close section
Close

联系我们

关于5UCMS 您有任何需求 均可以留言给我们