|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
Windows本身的所有问题都会一成不变的也累加到了它的身上。安全性、稳定性、跨平台性都会因为与NT的捆绑而显现出来;***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***
算法使用:散布多线程树读取
国内有些大的CRM厂商的ASP就写得不错.无论是概念还是它里面用JAVASCRIPT的能力.并不是说现在的程序员用了ASP.NET来写程序就可以说自己高档了 |
|