[asp]阿里西西的alexa采集效果代码_ASP教程-查字典教程网
[asp]阿里西西的alexa采集效果代码
[asp]阿里西西的alexa采集效果代码
发布时间:2016-12-29 来源:查字典编辑
摘要:我想这个系统现在在网上或源码站几乎是没有可用的程序。提供下载的都是以前的老版本,ALEXA官方在他们的页面做了混淆代码防采集后,那些以前的A...

我想这个系统现在在网上或源码站几乎是没有可用的程序。提供下载的都是以前的老版本,ALEXA官方在他们的页面做了混淆代码防采集后,那些以前的ALEXA排名查询系统都已经无法再使用了。网上除了一些知名(有钱的主)能提供(通过收费接口)的排名查询和我看到的webmasterhome.cn免费接口的查询功能系统外,个人站长基本没几个再能提供ALEXA排名查询服务。

开源发布的这个版本经过我一段时间的使用和完善,已经做到无错,速度相对也比较快。为了这个系统,也曾有黑客威胁过自己,并招来两天猛烈的DDOS攻击。

<%

Dimdomain,Url,Url1,strPage,StrPage1

Dimxmldom,SD,SITE,dimg

domain=request.QueryString("url")

ifdomain=""thendomain="jb51.net"

IfNotiswww(domain)Then

response.write"<script>alert('您输入的网址无效,请重新输入!')</script>"

domain="jb51.net"

Endif

host="jb51.net"

ifleft(domain,7)="http://"then

domain=right(domain,len(domain)-7)

endif

ifinstr(domain,"/")<>0then

domain=left(domain,instr(domain,"/")-1)

endif

onerrorresumeNext

Functioniswww(strng)

iswww=false

DimregEx,Match

SetregEx=NewRegExp

regEx.Pattern="^w+((-w+)|(.w+))*[A-Za-z0-9]+((.|-)[A-Za-z0-9]+)*.[A-Za-z]+$"

regEx.IgnoreCase=True

SetMatch=regEx.Execute(strng)

ifmatch.counttheniswww=true

EndFunction

FunctionGetPage(Path)

t=GetBody(Path)

GetPage=BytesToBstr(t,"UTF-8")

Endfunction

FunctionGetPage2(Path)

t=GetBody(Path)

GetPage2=BytesToBstr(t,"GB2312")

Endfunction

FunctionGetBody(url)

onerrorresumenext

SetRetrieval=CreateObject("Microsoft.XMLHTTP")

WithRetrieval

.Open"Get",url,False,"",""

.Send

GetBody=.ResponseBody

EndWith

SetRetrieval=Nothing

EndFunction

functionfget(str)

selectcasetrim(str)

case""

fget="--"

caseelse

fget=str

endselect

endfunction

FunctionBytesToBstr(body,Cset)

dimobjstream

setobjstream=Server.CreateObject("adodb.stream")

objstream.Type=1

objstream.Mode=3

objstream.Open

objstream.Writebody

objstream.Position=0

objstream.Type=2

objstream.Charset=Cset

BytesToBstr=objstream.ReadText

objstream.Close

setobjstream=nothing

EndFunction

FunctionFixStr(ByValstr,ByValstart,ByVallast,ByValn)

DimstrTemp

OnErrorResumeNext

IfInStr(str,start)>0Then

SelectCasen

Case0

strTemp=Right(str,Len(str)-InStr(str,start)-Len(start)+1)

strTemp=Left(strTemp,InStr(strTemp,last)-1)

CaseElse

strTemp=Right(str,Len(str)-InStr(str,start)+1)

strTemp=Left(strTemp,InStr(strTemp,last)+Len(last)-1)

EndSelect

Else

strTemp=""

EndIf

FixStr=strTemp

EndFunction

FunctionComma(str)

IfNot(IsNumeric(str))Orstr=0Then

Result=0

ElseIfLen(Fix(str))<4Then

Result=str

Else

Pos=Instr(1,str,".")

IfPos>0Then

Dec=Mid(str,Pos)

Endif

Res=StrReverse(Fix(str))

LoopCount=1

WhileLoopCount<=Len(Res)

TempResult=TempResult+Mid(Res,LoopCount,3)

LoopCount=LoopCount+3

IfLoopCount<=Len(Res)Then

TempResult=TempResult+","

EndIf

Wend

Result=StrReverse(TempResult)+Dec

EndIf

Comma=Result

EndFunction

Functionlens(txt,length)

Dimx,y,ii

txt=Trim(txt)

x=Len(txt)

y=0

Ifx>=1Then

Forii=1Tox

IfAsc(Mid(txt,ii,1))<0OrAsc(Mid(txt,ii,1))>255Then

y=y+2

Else

y=y+1

EndIf

Ify>=lengthThen

txt=Left(Trim(txt),ii-3)&"..."

ExitFor

EndIf

Next

lens=txt

Else

lens=""

EndIf

EndFunction

Url="http://data.alexa.com/data/?cli=10&dat=snba&ver=7.0&url="&Domain

strPage=GetPage(Url)

setxmldom=server.createobject("MSXML2.DOMDocument")

xmldom.loadXML(strPage)

SetSD=xmldom.documentElement.selectSingleNode("SD")

SetSITE=xmldom.documentElement.selectSingleNode("DMOZ")

DimADDR

DimCREATED

DimPHONE

DimOWNER

DimEMAIL

DimLANG

DimLINKSIN

DimSPEED

DimPOPULARITY

DimRANK

DimCHILD

DimREACH

SetADDR=SD.selectSingleNode("ADDR")

SetCREATED=SD.selectSingleNode("CREATED")

SetPHONE=SD.selectSingleNode("PHONE")

SetOWNER=SD.selectSingleNode("OWNER")

SetEMAIL=SD.selectSingleNode("EMAIL")

SetLANG=SD.selectSingleNode("LANG")

SetLINKSIN=SD.selectSingleNode("LINKSIN")

SetSPEED=SD.selectSingleNode("SPEED")

SetPOPULARITY=SD.selectSingleNode("POPULARITY")

SetRANK=SD.selectSingleNode("RANK")

SetCHILD=SD.selectSingleNode("CHILD")

SetREACH=SD.selectSingleNode("REACH")

DimSITEINFO

DimCATS

DimSiteTitle

DimSiteDesc

DimCat

SetSITEINFO=SITE.selectSingleNode("SITE")

SetCATS=SITEINFO.selectSingleNode("CATS").selectSingleNode("CAT")

SiteTitle=SITEINFO.attributes(1).value

SiteDesc=SITEINFO.attributes(2).value

Cat=CATS.attributes(1).value

DimCOUNTRY

DimZIP

DimSTATE

DimCITY

DimSTREET

STREET=ADDR.attributes(0).value

CITY=ADDR.attributes(1).value

ZIP=ADDR.attributes(2).value

STATE=ADDR.attributes(3).value

COUNTRY=ADDR.attributes(4).value

DimxDate

DimxPhone

DimxOwner

DimxEmail

DimxLex

DimxCode

DimxLinksin

DimxSpeed

DimxPct

DimxPopularity

DimxRank

DimxChild

DimxReach

xDate=CREATED.attributes(0).value

xPhone=PHONE.attributes(0).value

xOwner=OWNER.attributes(0).value

xEmail=EMAIL.attributes(0).value

xLex=LANG.attributes(0).value

xCode=LANG.attributes(1).value

xLinksin=LINKSIN.attributes(0).value

xSpeed=SPEED.attributes(0).value

xPct=SPEED.attributes(1).value

xPopularity=POPULARITY.attributes(1).value

xPopularity=Comma(xPopularity)

xRank=RANK.attributes(0).value

ifinstr(xRank,"-")>0then

dimg="<imgsrc=""skin/up_arrow.gif""align=absmiddlewidth=18height=16/>"

else

dimg="<imgsrc=""skin/down_arrow.gif""align=absmiddlewidth=18height=16/>"

endif

xRank=replace(xRank,"+","")

xRank=replace(xRank,"-","")

xRank=Comma(xRank)

xChild=CHILD.attributes(0).value

xReach=REACH.attributes(0).value

PublicFunctionRemoveHtml(byvalstrContent)

DimobjReg,strTmp

IfstrContent=""ORISNull(strContent)ThenExitFunction

SetobjReg=newRegExp

objReg.IgnoreCase=True

objReg.Global=True

objReg.Pattern="<(.[^>]*)>"

strTmp=objReg.Replace(strContent,"")

SetobjReg=Nothing

RemoveHtml=strTmp

strTmp=""

EndFunction

DimSitePic

Dimpm6,pm3,pm1,pday15,pday7

Dimtmp1

Dimt_arr

Dimt_day,t_wk1,t_m3,t_m3_change

pm6="http://traffic.alexa.com/graph?w=700&h=280&r=6m&y=t&u="&Domain

pm3="http://traffic.alexa.com/graph?w=700&h=280&r=3m&y=t&u="&Domain

pm1="http://traffic.alexa.com/graph?w=700&h=280&r=1m&y=t&u="&Domain

pday15="http://traffic.alexa.com/graph?w=700&h=280&r=15.0m&y=t&u="&Domain

pday7="http://traffic.alexa.com/graph?w=700&h=280&r=7.0m&y=t&u="&Domain

settnames=request.cookies("dnames")

ifisnull(tnames)orlen(trim(tnames))=0then

tnames=domain&"|"

else

ifinstr(tnames,domain)>0then

names=replace(tnames,domain&"|","")

else

tnames=domain&"|"&tnames

endif

endIf

ttnames=split(tnames,"|")

tmpncontent=""

ifubound(ttnames)>5then

fortat=0to4

tmpncontent=tmpncontent&ttnames(tat)&"|"

next

else

tmpncontent=tnames

endIf

response.cookies("dnames")=trim(tmpncontent)

response.cookies("dnames").expires=now()+1

%>

<html>

<head>

<title>查字典教程网alexa查询系统,alexa排名查询,alexa网站排名查询,全球alexa排名查询,alexa世界排名查询,alexa排名,alexa工具条,alexatrafficrank,<%=SiteTitle%>,<%=domain%>的Alexa排名查询</title>

<METAhttp-equiv="Content-Type"content="text/html;charset=gb2312">

<METAhttp-equiv="Content-Language"content="gb2312">

<metahttp-equiv="Keywords"content="查字典教程网Alexa排名查询,Alexa作弊,Alexa排名,Alexa查询,Alexa信息,排名,流量,访问量,页面浏览量,搜索引擎,<%=SiteTitle%>的Alexa排名信息,<%=domain%>">

<metaname="description"content="www.alixixi.com,查字典教程网alexa查询,alexa排名,alexa排名查询,alexa世界排名查询,alexa网站排名查询,alexa网站排名,全球alexa排名查询,alexa排名查询,网站alexa排名查询,alexa工具条,alexa中文排名查询,alexatrafficrank,alexa查询,alexa排名"/>

<linkhref="skin/style.css"rel="stylesheet"type="text/css"/>

<scriptlanguage=JavaScriptsrc="js/scroll.js"></script>

</head>

<body>

<DIVid=lovexin1class="body"><divonClick='javascript:window.hide()'>最近查询记录</div>

<div><ul><%

Setfso=CreateObject("Scripting.FileSystemObject")

Setf=fso.OpenTextFile(server.MapPath("cache.asp"),1,True)

iff.AtEndOfStream=falsethen

content=f.readline()

endif

f.close

iffso.fileexists(server.MapPath("cache.asp"))=truethen

fso.deletefile(server.MapPath("cache.asp"))

endif

Setf=fso.OpenTextFile(server.MapPath("cache.asp"),8,True)

ifisnull(content)orlen(trim(content))=0then

content=domain&"|"

else

ifinstr(content,domain)>0then

setcontent=replace(content,domain&"|","")

else

content=domain&"|"&content

endif

endif

names=split(content,"|")

tmpcontent=""

fortt=0toubound(names)-1

iftt<15then

tmpcontent=tmpcontent&names(tt)&"|"

endif

%>

<li><ahref="Index.asp?url=<%=names(tt)%>"title="www.<%=names(tt)%>"><%=names(tt)%></a></li>

<%

next

f.write(trim(tmpcontent))

f.close

setf=nothing

%>

</ul></DIV>

</DIV>

<DIVid=lovexin2class="body"><divonClick='javascript:window.hide()'>您关注的站点</div>

<div>

<ul>

<%

forttt=0toubound(ttnames)-1

%>

<li><ahref="index.asp?url=<%=ttnames(ttt)%>"title="www.<%=ttnames(ttt)%>"><%=ttnames(ttt)%></a></li>

<%

next

%>

</ul>

</div>

</DIV>

<divclass="body">

<formaction=""method="get">

Alexa排名查询的网址:http://

<inputname="url"type="text"value="<%=domain%>">

<inputtype="submit"value="查询">

</form>

</div>

<divclass="th">网站<%=domain%>的Alexa排名综合信息</div>

<divclass="body">

<div>

<>

<div>

<ahref="http://thumbnails.alexa.com/update_thumbnail?url=<%=domain%>"target="_blank">更新缩略图</a>|<ahref="http://www.alexa.com/data/details/contact_info?url=<%=domain%>"target="_blank">修改信息</a>|<ahref="http://www.alexa.com/data/details/editor?type=rl&url=<%=domain%>"target="_blank">提交链接</a></div>

<>

</div>

<div>

<divid="siteinfo">

<tablewidth="100%"cellpadding="1"cellspacing="1">

<TR>

<TDwidth="85"align="right"noWrapbgColor="#f3f8fc">站点名称:</TD>

<TDwidth="178"title="<%=SiteTitle%>"><ahref="http://<%=domain%>"target=_blank><%=SiteTitle%></a></TD>

<TDwidth="79"align="right"nowrapbgColor="#f3f8fc">网站域名:</TD>

<TDwidth="163"title="<%=domain%>"><strong><%=domain%></strong></TD>

</TR>

<TR>

<TDalign="right"nowrapbgColor="#f3f8fc"title="alexa综合排名">综合排名:</TD>

<TDtitle="<%=xPopularity%>"><Atitle="查看Alexa官方信息"href="http://www.alexa.com/data/details/traffic_details?q=&url=<%=domain%>"target="_blank"><%=fget(xPopularity)%></A></TD>

<TDalign="right"nowrapbgColor="#f3f8fc"title="三个月的排名变化趋势">排名变化:</TD>

<TDid="NextRank"title="三个月的排名变化趋势"><%=dimg&fget(xRank)%></TD>

</TR>

<TR>

<TDalign="right"nowrapbgColor="#f3f8fc">所属国家:</TD>

<TDtitle="<%=COUNTRY%>"><%=fget(COUNTRY)%></TD>

<TDalign="right"nowrapbgColor="#f3f8fc">编码方式:</TD>

<TDtitle="<%=xCode%>"><%=fget(xCode)%></TD>

</TR>

<TR>

<TDalign="right"nowrapbgColor="#f3f8fc">网站站长:</TD>

<TDtitle="<%=xOwner%>"><%=fget(xOwner)%></TD>

<TDalign="right"nowrapbgColor="#f3f8fc">电子信箱:</TD>

<TDtitle="<%=xEmail%>"><%=fget(xEmail)%></TD>

</TR>

<TR>

<TDalign="right"nowrapbgColor="#f3f8fc">访问速度:</TD>

<TDnowraptitle="<%=xSpeed%>Ms/<%=xPct%>分"><%=fget(xSpeed)%>Ms/<%=fget(xPct)%>分</TD>

<TDalign="right"nowrapbgColor="#f3f8fc">反向链接:</TD>

<TDnowraptitle="<%=xLinksin%>"><Ahref="http://www.alexa.com/data/ds/linksin?q=link:<%=domain%>/&url=<%=domain%>"target="_blank"><%=fget(xLinksin)%></A>个</TD>

</TR>

<TR>

<TDalign="right"nowrapbgColor="#f3f8fc">收录日期:</TD>

<TDnowraptitle="<%=xDate%>"><%=fget(xDate)%></TD>

<TDalign="right"nowrapbgColor="#f3f8fc">联系电话:</TD>

<TDtitle="<%=xPhone%>"noWrap><%=fget(xPhone)%></TD>

</TR>

<TR>

<TDalign="right"nowrapbgColor="#f3f8fc">详细地址:</TD>

<TDtitle="<%=STREET%><%=CITY%>"colSpan="3"><%=fget(lens(STREET&CITY,65))%></TD>

</TR>

<TR>

<TDalign="right"nowrapbgColor="#f3f8fc">网站简介:</TD>

<TDtitle="<%=SiteDesc%>"colSpan="3"><%=fget(lens(SiteDesc,69))%></TD>

</TR>

<TR>

<TDalign="right"nowrapbgColor="#f3f8fc">所属目录:</TD>

<TDtitle="<%=Cat%>"colSpan="3"><%=fget(Cat)%></TD>

</TR>

</table><fontcolor=red>站长推荐:<scripttype="text/javascript"><>

</script>

<scripttype="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js">

</script></font></a>

</div>

</div>

</div>

<divclass="th">站点<%=SiteTitle%>的Alexa排名查询结果</div>

<divclass="body1">

<divclass="xbg2">流量排名数据信息:TrafficRankfor<%=domain%></div>

<divclass="mainbar">

<divclass="title">昨日排名</div>

<divclass="title">一周平均</div>

<divclass="title">三月平均</div>

<divclass="title">三月变化趋势</div>

<divclass="title2">综合排名变化</div>

</div>

<divclass="mainbar2">

<divid="RankToday"class="title"><imgsrc="skin/loading.gif"width="16"height="16"border="0"></div>

<divid="RankwkAvg"class="title"><imgsrc="skin/loading.gif"width="16"height="16"border="0"></div>

<divid="RankmosAvg"class="title"><imgsrc="skin/loading.gif"width="16"height="16"border="0"></div>

<divid="AllRank"class="title"><imgsrc="skin/loading.gif"width="16"height="16"border="0"></div>

<divid="RankmosChange"class="title2"><%=dimg&fget(xRank)%></div>

</div>

<divclass="xbg2">每百万人中访问数:Reachfor<%=domain%></div>

<divclass="mainbar">

<divclass="title">昨日数据</div>

<divclass="title">一周平均</div>

<divclass="title">三月平均</div>

<divclass="title">三月变化趋势</div>

<divclass="title2">综合排名变化</div>

</div>

<divclass="mainbar2">

<divid="ReachToday"class="title"><imgsrc="skin/loading.gif"width="16"height="16"border="0"></div>

<divid="ReachwkAvg"class="title"><imgsrc="skin/loading.gif"width="16"height="16"border="0"></div>

<divid="ReachmosAvg"class="title"><imgsrc="skin/loading.gif"width="16"height="16"border="0"></div>

<divid="ReachmosChange"class="title"><imgsrc="skin/loading.gif"width="16"height="16"border="0"></div>

<divid="ReachAllChange"class="title2"><imgsrc="skin/loading.gif"width="16"height="16"border="0"></div>

</div>

<divclass="xbg2">每访问者浏览页数:PageViewsperuserfor<%=domain%></div>

<divclass="mainbar">

<divclass="title">昨日数据</div>

<divclass="title">一周平均</div>

<divclass="title">三月平均</div>

<divclass="title">三月变化趋势</div>

<divclass="title2">综合排名变化</div>

</div>

<divclass="mainbar2">

<divid="ViewsToday"class="title"><imgsrc="skin/loading.gif"width="16"height="16"border="0"></div>

<divid="ViewswkAvg"class="title"><imgsrc="skin/loading.gif"width="16"height="16"border="0"></div>

<divid="ViewsmosAvg"class="title"><imgsrc="skin/loading.gif"width="16"height="16"border="0"></div>

<divid="ViewsmosChange"class="title"><imgsrc="skin/loading.gif"width="16"height="16"border="0"></div>

<divid="ViewsAllChange"class="title2"><imgsrc="skin/loading.gif"width="16"height="16"border="0"></div>

</div>

</div>

<divclass="th"><%=SiteTitle%>其它相关Alexa排名的信息统计</div>

<divclass="body1">

<divclass="xbg2"><%=SiteTitle%>下属站点被访问比例</div>

<divclass="mainbar">

<divclass="title">子域名</div>

<divclass="title2">访问比例</div>

</div>

<spanid="more"><imgsrc="skin/loading.gif"width="16"height="16"border="0"></span>

</div>

<divclass="th">网站日平均排名走势图[点击时间段查看相应时段曲线]</div>

<divclass="mainbar">

<divclass="title"><aonClick="document.all.rank1.style.display='';document.all.rank2.style.display='none';document.all.rank3.style.display='none';document.all.rank4.style.display='none';document.all.rank5.style.display='none';">六个月数据</a></div>

<divclass="title"><aonClick="document.all.rank1.style.display='none';document.all.rank2.style.display='';document.all.rank3.style.display='none';document.all.rank4.style.display='none';document.all.rank5.style.display='none';">三个月数据</a></div>

<divclass="title"><aonClick="document.all.rank1.style.display='none';document.all.rank2.style.display='none';document.all.rank3.style.display='';document.all.rank4.style.display='none';document.all.rank5.style.display='none';">一个月数据</a></div>

<divclass="title"><aonClick="document.all.rank1.style.display='none';document.all.rank2.style.display='none';document.all.rank3.style.display='none';document.all.rank4.style.display='';document.all.rank5.style.display='none';">半个月数据</a></div>

<divclass="title2"><aonClick="document.all.rank1.style.display='none';document.all.rank2.style.display='none';document.all.rank3.style.display='none';document.all.rank4.style.display='none';document.all.rank5.style.display='';">一星期数据</a></div>

</div>

<divclass="mainbar2">

<divid=rank1><imgsrc="http://traffic.alexa.com/graph?w=750&h=280&r=6m&y=t&u=<%=domain%>"></div>

<divid=rank2><imgsrc="http://traffic.alexa.com/graph?w=750&h=280&r=3m&y=t&u=<%=domain%>"></div>

<divid=rank3><imgsrc="http://traffic.alexa.com/graph?w=750&h=280&r=1m&y=t&u=<%=domain%>"></div>

<divid=rank4><imgsrc="http://traffic.alexa.com/graph?w=750&h=280&r=15.0m&y=t&u=<%=domain%>"></div>

<divid=rank5><imgsrc="http://traffic.alexa.com/graph?w=750&h=280&r=7.0&y=t&u=<%=domain%>"></div>

</div>

<divclass="th">日平均访问人数走势图[点击时间段查看相应时段曲线]</div>

<divclass="mainbar">

<divclass="title"><aonClick="document.all.reachs1.style.display='';document.all.reachs2.style.display='none';document.all.reachs3.style.display='none';document.all.reachs4.style.display='none';document.all.reachs5.style.display='none';">六个月数据</a></div>

<divclass="title"><aonClick="document.all.reachs1.style.display='none';document.all.reachs2.style.display='';document.all.reachs3.style.display='none';document.all.reachs4.style.display='none';document.all.reachs5.style.display='none';">三个月数据</a></div>

<divclass="title"><aonClick="document.all.reachs1.style.display='none';document.all.reachs2.style.display='none';document.all.reachs3.style.display='';document.all.reachs4.style.display='none';document.all.reachs5.style.display='none';">一个月数据</a></div>

<divclass="title"><aonClick="document.all.reachs1.style.display='none';document.all.reachs2.style.display='none';document.all.reachs3.style.display='none';document.all.reachs4.style.display='';document.all.reachs5.style.display='none';">半个月数据</a></div>

<divclass="title2"><aonClick="document.all.reachs1.style.display='none';document.all.reachs2.style.display='none';document.all.reachs3.style.display='none';document.all.reachs4.style.display='none';document.all.reachs5.style.display='';">一星期数据</a></div>

</div>

<divclass="mainbar2">

<divid=reachs1><imgsrc="http://traffic.alexa.com/graph?w=750&h=280&r=6m&y=r&u=<%=domain%>"></div>

<divid=reachs2><imgsrc="http://traffic.alexa.com/graph?w=750&h=280&r=3m&y=r&u=<%=domain%>"></div>

<divid=reachs3><imgsrc="http://traffic.alexa.com/graph?w=750&h=280&r=1m&y=r&u=<%=domain%>"></div>

<divid=reachs4><imgsrc="http://traffic.alexa.com/graph?w=750&h=280&r=15.0m&y=r&u=<%=domain%>"></div>

<divid=reachs5><imgsrc="http://traffic.alexa.com/graph?w=750&h=280&r=7.0m&y=r&u=<%=domain%>"></div>

</div>

<divclass="th">日页面浏览量走势图[点击时间段查看相应时段曲线]</div>

<divclass="mainbar">

<divclass="title"><aonClick="document.all.pageviews1.style.display='';document.all.pageviews2.style.display='none';document.all.pageviews3.style.display='none';document.all.pageviews4.style.display='none';document.all.pageviews5.style.display='none';">六个月数据</a></div>

<divclass="title"><aonClick="document.all.pageviews1.style.display='none';document.all.pageviews2.style.display='';document.all.pageviews3.style.display='none';document.all.pageviews4.style.display='none';document.all.pageviews5.style.display='none';">三个月数据</a></div>

<divclass="title"><aonClick="document.all.pageviews1.style.display='none';document.all.pageviews2.style.display='none';document.all.pageviews3.style.display='';document.all.pageviews4.style.display='none';document.all.pageviews5.style.display='none';">一个月数据</a></div>

<divclass="title"><aonClick="document.all.pageviews1.style.display='none';document.all.pageviews2.style.display='none';document.all.pageviews3.style.display='none';document.all.pageviews4.style.display='';document.all.pageviews5.style.display='none';">半个月数据</a></div>

<divclass="title2"><aonClick="document.all.pageviews1.style.display='none';document.all.pageviews2.style.display='none';document.all.pageviews3.style.display='none';document.all.pageviews4.style.display='none';document.all.pageviews5.style.display='';">一星期数据</a></div>

</div>

<divclass="mainbar2">

<divid=pageviews1><imgsrc="http://traffic.alexa.com/graph?w=750&h=280&r=6m&y=p&u=<%=domain%>"></div>

<divid=pageviews2><imgsrc="http://traffic.alexa.com/graph?w=750&h=280&r=3m&y=p&u=<%=domain%>"></div>

<divid=pageviews3><imgsrc="http://traffic.alexa.com/graph?w=750&h=280&r=1m&y=p&u=<%=domain%>"></div>

<divid=pageviews4><imgsrc="http://traffic.alexa.com/graph?w=750&h=280&r=15.0m&y=p&u=<%=domain%>"></div>

<divid=pageviews5><imgsrc="http://traffic.alexa.com/graph?w=750&h=280&r=7.0m&y=p&u=<%=domain%>"></div>

</div>

<div>

<>

<%timer2=timer

thetime=cstr(int(((timer2-timer1)*10000)+0.5)/10)

response.write"本页执行共用了"&thetime&"毫秒"

%>

<br>

Copyright©2006<ahref="http://www.jb51net"target="_blank">jb51.Net</a>AllRightsReserved版权所有·查字典教程网

<>

</div>

<scriptlanguage="javascript"type="text/javascript"src="ajaxloading.asp?url=<%=domain%>&dayrank=<%=xRank%>"></script>

</body>

</html>

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新ASP教程学习
    热门ASP教程学习
    编程开发子分类