|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
国内有些大的CRM厂商的ASP就写得不错.无论是概念还是它里面用JAVASCRIPT的能力.并不是说现在的程序员用了ASP.NET来写程序就可以说自己高档了web|程序|显现|页面 显现页面show.asp--基于web的QQ程序1(onlyasp)
<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></p>asp对于服务器的要求较高,一般的服务器如果访问量一大就垮了,不得不重启。 |
|