|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
ActiveServerPage技术为应用开发商提供了基于脚本的直观、快速、高效的应用开发手段,极大地提高了开发的效果。在讨论ASP的安全性问题之前,让我们来看看ASP是怎么工作的。cookie|request|vbscript|程序|函数functioncookievalue(pcook)
lhowlong=len(pcook)
lwhereis=instr(document.cookie,pcook)
iflwhereis=0then
cookievalue=false
else
lstartpos=len(document.cookie)-lwhereis-lhowlong
lstartstring=right(document.cookie,lstartpos)
do
lchar=left(lstartstring,1)
iflchar=";"then
cookievalue=lendstring
exitdo
else
lendstring=lendstring&lchar
iflen(lstartstring)=1then
cookievalue=lendstring
exitdo
else
lstartstring=right(lstartstring,len(lstartstring)-1)
endif
endif
loop
endif
endfunction</p>强大的可扩展性。ASP具有强大的扩展性,可以实现与多种网络、硬件设备的连接:通过专用的通讯线路远程接入企业;通过远程拨号服务器为远程拨号客户提供服务;通过WAP为移动电话互联网客户服务。 |
|