|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
asp是基于web的一种编程技术,可以说是cgi的一种。它可以完成以往cgi程序的所有功能,如计数器、留言簿、公告板、聊天室等等。递回|原创***startinput.asp***
<%thenum=request("num")%>
<styletype="text/CSS">
<!--
.trees{border-color:blackblackblack#666666;padding-left:12px;border-style:solid;border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:3px;margin-top:2px;margin-bottom:2px}
-->
</style>
<divclass="trees"id="tree<%=thenum%>"><%=thenum%><spanid="follow<%=thenum%>"><iframename="agent<%=thenum%>"style="display:none"src="prime_number.asp?num=<%=thenum%>"></iframe></span></div>
***endinput.asp***
***startprime_number.asp***
<%
IsPrimeNumber=false
thenum=request("num")
ifthenum=2orthenum=1then
IsPrimeNumber=false
else
fori=2tothenum-1
ifthenum/i=int(thenum/i)thenIsPrimeNumber=true:m=i:exitfor
next
endif
ifIsPrimeNumber=falsethen%>
<script>
varhtmltext=<divclass="trees"><%=thenum%>*</div>;
parent.follow<%=thenum%>.innerHTML=htmltext;
</script>
<%else%>
<%k=thenum/m%>
<script>
varhtmltext=<divclass="trees"><%=m%>*</div><divclass="trees"id="tree<%=k%>"><%=k%><spanid="follow<%=k%>"><iframename="agent<%=k%>"style="display:none"src="prime_number.asp?num=<%=k%>"></iframe></span></div>;
parent.follow<%=thenum%>.innerHTML=htmltext;
</script>
<%endif%>
***endprime_number.asp***
算法使用:散布多线程树读取</p>缺点:安全性不是太差了,还行,只要你充分利用系统自带的工具;唯一缺点就是执行效率慢,如何进行网站优化以后,效果会比较好。 |
|