|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
国内有些大的CRM厂商的ASP就写得不错.无论是概念还是它里面用JAVASCRIPT的能力.并不是说现在的程序员用了ASP.NET来写程序就可以说自己高档了数据|数据库|随机<%
"一个从数据库中随机读取记录的例子
SetRs1=server.CreateObject("adodb.recordset")
SetRs=server.CreateObject("ADODB.RECORDSET")
SQL="SelectidfromArticleorderbyiddesc"
rs.Opensql,dataconn,3,3
Ifnotrs.EOFthen
total=rs("id")"取最年夜的ID
rs.Close
Randomize
R=Int((total-1+1)*Rnd+1)
SQL="Selectid,contentfromArticlewhereid="&R
rs.Opensql,dataconn,3,3
ifnotrs.EOFthen
content=RS("content")
content=replace(content,chr(10),"<br>")
content=replace(content,chr(13),"<br>")
content=replace(content,"<br><br>","<br>")
Response.Writecontent
else
sql1="selectcontentfromArticle"
rs1.Opensql1,dataconn,3,3
ifnoteofthen
"取第一条记录作为默许的显现记录
content=RS1("content")
content=replace(content,chr(10),"<br>")
content=replace(content,chr(13),"<br>")
content=replace(content,"<br><br>","<br>")
Response.Writecontent
else
"数据库为空
Response.Write"不存在"
endif
rs1.Close
endif
Rs.Close
endif
setRs=nothing
%>我想详细了解ASP整站代码与PSP整站代码有什么优缺点,那个更好,更安全,更用容易维护,和管理。。。 |
|