|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
缺点:安全性不是太差了,还行,只要你充分利用系统自带的工具;唯一缺点就是执行效率慢,如何进行网站优化以后,效果会比较好。web|法式|显示|页面 <html>
<head>
<title>基于web的QQ法式1</title>
<meta http-equiv="refresh" content="5">//每五秒获得一次信息(后面已完成了有关登录之类的任务)
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#FFFFFF" text="#000000">
//假定同时通讯量为30
<%
response.write("如今在线:"&"<br>"
for i=1 to 30
if application("user"&i)=session("user") then
response.write("<font color=#FFFF00>")
response.write(session("user")&"</font>")
else
response.write(application("user"&i)&"<br>")
end if
if application("towho"&i)=session("user") then%>
<script language="javascript">
window.open("inform.asp","","width=200,height=400")
</script>
<%end if
next%>
</body>
</html>
</p> 我想详细了解ASP整站代码与PSP整站代码有什么优缺点,那个更好,更安全,更用容易维护,和管理。。。 |
|