|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
我想详细了解ASP整站代码与PSP整站代码有什么优缺点,那个更好,更安全,更用容易维护,和管理。。。hawkfly宣布于2000-11-817:43:只是方才写完,未做优化,详细可参照CHINAASP论坛TOP10修正
<%@LANGUAGE="VBSCRIPT"%>
<%OPTIONEXPLICIT%>
<!--#includefile="DataConn.asp"-->
<!--#includefile="FuncSet.asp"-->
<%dimrs,sql,IDa,IDb,s,RegUser,a,b,c
Setrs=Server.CreateObject("ADODB.recordset")
sql="Select*fromUserInfoORDERBYiPerienceDESC"
rs.Opensql,ConnStr,1,1
RegUser=rs.RecordCount
IDa=1
IDb=2
%>
<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312">
<metahttp-equiv="pragma"content="no-cache">
<linkrel="stylesheet"type="text/CSS"href="Site.css">
<title>龙虎排行</title>
</head>
<bodyclass="detail">
<tableborder="0"width="70%"cellpadding="0"align="center">
<tr>
<tdwidth="16%"bgcolor="#FFFFFF"align="center"><fontcolor="#0000A0">名次</font></td>
<tdwidth="16%"class="Listline"align="center"><fontcolor="#0000A0">网名</font></td>
<tdwidth="17%"class="Listline"align="center"><fontcolor="#0000A0">帖子数</font></td>
<tdwidth="17%"bgcolor="#FFFFFF"align="center"><fontcolor="#0000A0">名次</font></td>
<tdwidth="17%"class="Listline"align="center"><fontcolor="#0000A0">网名</font></td>
<tdwidth="17%"class="Listline"align="center"><fontcolor="#0000A0">帖子数</font></td>
</tr>
<%ifRegUser<10then
a=RegUser/2
else
a=5
endif
fors=1toa
%>
<tr>
<tdwidth="16%"bgcolor="#FFFFFF"align="center"valign="bottom"><fontsize="2"
color="#0000A0"><b><%=IDa%></b></font></td>
<tdclass="Listline"align="center"style="cursor:hand"UserName")%>,Call,width=350,height=400,left=300,top=100,toolbar=no,status=no)"><fontcolor=#0000CC><%=rs("UserName")%></font></td>
<tdclass="Listline"align="center"><%=rs("iPerience")%></td>
</td>
<%rs.movenext%>
<tdwidth="17%"bgcolor="#FFFFFF"align="center"valign="bottom"><fontsize="2"
color="#0000A0"><b><%=IDb%></b></font></td>
<tdclass="Listline"align="center"style="cursor:hand"UserName")%>,Call,width=350,height=400,left=300,top=100,toolbar=no,status=no)"><fontcolor=#0000CC><%=rs("UserName")%></font></td>
<tdclass="Listline"align="center"><%=rs("iPerience")%></td>
</tr>
<%
IDa=IDa+2
IDb=IDb+2
rs.movenext
next
%>
<%ifRegUser>20then
forb=11to15%>
<tdclass="Listline"align="center"style="cursor:hand"UserName")%>,Call,width=350,height=400,left=300,top=100,toolbar=no,status=no)"><fontcolor=#0000CC><%=rs("UserName")%></font></td>
<%rs.movenext%>
<%
next
endif%>
<%ifRegUser>20then
forc=16to20%>
<tdclass="Listline"align="center"style="cursor:hand"UserName")%>,Call,width=350,height=400,left=300,top=100,toolbar=no,status=no)"><fontcolor=#0000CC><%=rs("UserName")%></font></td>
<%rs.movenext%>
<%
next
endif%>
</table>
</body>
</html>
结论:和PHP一样,ASP简单而易于维护,很适合小型网站应用,通过DCOM和MTS技术,ASP甚至还可以完成小规模的企业应用,但ASP的致命缺点就是不支持跨平台的系统,在大型项目开发和维护上非常困难。 |
|