|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
因为ASP脚本语言非常简单,因此其代码也简单易懂,结合HTML代码,可快速地完成网站的应用程序。还无法完全实现一些企业级的功能:完全的集群、负载均横。web|程序|显现|页面
<html>
<head>
<title>基于web的QQ程序1</title>
<metahttp-equiv="refresh"content="5">//每五秒获得一次信息(后面已完成了有关登录之类的事情)
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312">
</head>
<bodybgcolor="#FFFFFF"text="#000000">
//假定同时通讯量为30
<%
response.write("如今在线:"&"<br>"
fori=1to30
ifapplication("user"&i)=session("user")then
response.write("<fontcolor=#FFFF00>")
response.write(session("user")&"</font>")
else
response.write(application("user"&i)&"<br>")
endif
ifapplication("towho"&i)=session("user")then%>
<scriptlanguage="javascript">
window.open("inform.asp","","width=200,height=400")
</script>
<%endif
next%>
</body>
</html>
asp可以使用微软的activeX使得网页功能无比强大,不过安全性也较差,而且是基于的windows服务器,所以性能稳定性也一般 |
|