马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
对于中小型web应用来说,php有很强的竞争力,linux+apache+mysql+php(lamp)的组合几乎可以胜任绝大多数网站的解决方案,对于大型应用来讲,对于系统架构要求更高,需要有成熟的框架支持,jsp的struts是个不错的框架,国内介绍它的资料也非常多,应用逐渐广泛起来。asp就不用说了,显现页面disp.asp:
<%Setconnection=Server.CreateObject("ADODB.Connection")
DBPath=Server.MapPath("bbs.mdb")
connection.Open"driver={MicrosoftAccessDriver(*.mdb)};dbq="&DBPath
setRS=Connection.Execute("SELECT*FROMbbsWHEREID=topnumORDERBYIDDESC")
Setconn=Server.CreateObject("ADODB.Connection")
DBPath=Server.MapPath("bbs.mdb")
conn.Open"driver={MicrosoftAccessDriver(*.mdb)};dbq="&DBPath
DoWhilenotRS.EOF%>
<%=RS("id")%>
<ahref="detail.asp?ID=<%=RS("id")%>"><%=RS("subject")%></a>
<FONTSIZE="4"><B><%=RS("authorname")%></B></FONT>
<%=RS("adddate")&""%>
<%=RS("addtime")%>(<%=RS("visitnum")%>)<p>
<%SetRSNEXT=Conn.Execute("SELECT*FROMbbsWHEREtopnumIDandCstr(topnum)="&rs("id")&"ORDERBYIDASC")
DoWhileNotRSNEXT.EOF%>
<%=RSNEXT(0)%>
<ahref="detail.asp?ID=<%=RSNEXT(0)%>">Re<%=RSNEXT(6)%>:<%=RSNEXT(2)%></a>
<FONTSIZE="4"><B><%=RSNEXT(1)%></B></FONT><%=RSNEXT(4)&""%><%=RSNEXT(7)%>(<%=RSNEXT(5)%>)<P>
<%RSNEXT.MoveNext
Loop
RS.MoveNext
Loop
rsnext.Close
Conn.Close
RS.Close
Connection.Close%>
</body>
</html>
</p>asp可以使用微软的activeX使得网页功能无比强大,不过安全性也较差,而且是基于的windows服务器,所以性能稳定性也一般 |