马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
ASP在国内异常流行,因为国内大多使用的是盗版的Windows和盗版的SQLServer,而ASP+COM+SQLServer实际上也是一种不错的搭配,其性能也不输于PHP+MYSQL,特别是Windows系统和SQLServer都有图形界面,比APACHE和MYSQL易于维护,因此对于不重视知识产权的国家来说也是一种不错的选择。分页|函数 Functionc2u(myText)
Dimi
c2u=""
Fori=1toLen(myText)
c2u=c2u&"&#x"&Hex(AscW(Mid(myText,i,1)))&";"
Next
EndFunction<P> FunctioncutStr(str,strlen)
往失落一切HTML标志
Dimre
Setre=newRegExp
re.IgnoreCase=True
re.Global=True
re.Pattern="<(.[^>]*)>"
str=re.Replace(str,"")
setre=Nothing
Diml,t,c,i
l=Len(str)
t=0
Fori=1tol
c=Abs(Asc(Mid(str,i,1)))
Ifc>255Then
t=t+2
Else
t=t+1
EndIf
Ift>=strlenThen
cutStr=left(str,i)&"..."
ExitFor
Else
cutStr=str
EndIf
Next
cutStr=Replace(cutStr,chr(10),"")
cutStr=Replace(cutStr,chr(13),"")
EndFunction
<P> Functionconverttowide(str)
Dimstrlen
Dimposition
Dimconvertstr
ifisnull(str)then
converttowide=str
else
position=1
strlen=Len(str)
Fori=1Tostrlen
convertstr=convertstr+"&#x"+Hex(AscW(Mid(str,position,1)))+";"
position=position+1
Next
converttowide=convertstr
endif
EndFunction
<P> dimtopicx,usernamex,addtimex,logtextx,ispassword
猎取ID号
articleid=request("articleid")
写实行语句
strSQL="select*fromarticlewherearticleid="&articleid&""
接下面函数
logtextx=cutStr(rs("content"),5000)
入手下手分页
dimpage,PageLength,CLength,PageCount,wen,a
ifRequest("Page")""thenPage=CLng(Request("Page"))
PageLength=80
CLength=Len(logtextx)
PageCount=Int(Clength/PageLength)+1
ifPage<1orIsNull(Page)ThenPage=1
ifPage>PageCountThenPage=PageCount
ifpage=1then
a=1
elseifpage>1then
a=(Page-1)*PageLength
endif
wen=Mid(logtextx,a,PageLength)
判别
ifpage=""orpage=1then
入手下手显现内容
Response.write(c2u("内容:"))www.w3sky.com
endif
Response.write(converttowide(wen))
Response.write"<br/>"
Response.write(converttowide("本笔墨数:"))&CLength&"<br/>"
Response.write(c2u("本文被分为"))&PageCount&(converttowide("页"))&""&c2u("以后为"&Page&"页")&"<br/>"
ifPageCount>1andpage1thenwww.w3sky.com
Response.write"1"
endif
dimj
Forj=Page+1ToPage+10
ifj<=PageCount-1then
Response.write""&j&""
endif
next
ifPageCount>1andPagePageCountthen
Response.write"<ahref="/"showarticle.asp?articleid="&articleid&"&Page="&PageCount&""">"&PageCount&"</a><br/>"
Endif
停止
以上代码在WIN2000+IIS5、WIN2003+IIS6上实行经由过程
因为现在数据库都使用标准的SQL语言对数据库进行管理,所以如果是标准SQL语言,两者基本上都可以通用的。SQLServer还有更多的扩展,可以用存储过程,数据库大小无极限限制。 |