|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
我想详细了解ASP整站代码与PSP整站代码有什么优缺点,那个更好,更安全,更用容易维护,和管理。。。以下为援用的内容:
<%
Classaspxsky_page
PrivateSubclass_initialize
EndSub
PublicFunctionAlert(message,gourl)
message=replace(message,"","")
Ifgourl="-1"then
Response.Write("<scriptlanguage=javascript>alert("&message&");history.go(-1)</script>")
Else
Response.Write("<scriptlanguage=javascript>alert("&message&");location="&gourl&"</script>")
EndIf
Response.End()
EndFunction
PublicSubshowpage(str,page,url)
ifnotisnumeric(page)then
alert"提醒:毛病的参数!","-1"
endif
ifpage=""orpage=0orisnull(page)orisempty(page)then
page=1
else
page=cint(page)
endif
str=split(str,"{nextpage}")
abspage=page
pcount=ubound(str)+1
ifpage>cint(ubound(str)+1)orpage<1then
alert"提醒:毛病的参数!","-1"
else
response.writestr(page-1)&"<br><br><center>共分为"&pcount&"页"
endif
forp=0toubound(str)
response.write"<ahref="&url&"p="&p+1&">["&p+1&"]</a>"
next
response.write"以后第"&abspage&"/"&pcount&"页</center>"
EndSub
EndClass
------------------挪用-----------------------
p=request.QueryString("p")
str="第一页:这里是第一页的内容{nextpage}第二页:这里是第二页的内容"
url="shownews.asp?id="&id&"&"
setnewpage=newaspxsky_page
newpage.showpagestr,p,url
%>
asp,jsp,php是web开发的三大技术,asp简单易用且有microsoft做靠山,jsp功能强大是因为有java支持,php则开源跨平台.在国内,asp应用范围最广,jsp发展势头最猛,php则处于劣势.这可能与公司的支持以及技术的培训有关. |
|