|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
问题是他们究竟是喜欢他们是使用软件时,速度快还是速度慢好.(当然在3秒以内).无论是他们输入资料时,查找资料时,分析资料时.<%
bUseImages=CBool(Request.QueryString("images"))
strCountFileName=Server.MapPath(Request.ServerVariables("SCRIPT_NAME")&".dat")
SetobjFSO=Server.CreateObject("Scripting.FileSystemObject")
Openthefileasatextstream(1=ForReading,True=Create)
SetobjCountFile=objFSO.OpenTextFile(strCountFileName,1,True)
IfNotobjCountFile.AtEndOfStreamThen
iCount=CLng(objCountFile.ReadAll)
Else
iCount=0
EndIf
objCountFile.Close
SetobjCountFile=Nothing
iCount=iCount+1
SetobjCountFile=objFSO.CreateTextFile(strCountFileName,True)
objCountFile.WriteiCount
objCountFile.Close
SetobjCountFile=Nothing
SetobjFSO=Nothing
IfbUseImagesThen
ForI=1toLen(iCount)
Response.Write"<IMGSRC=""./images/digit_"
Response.WriteMid(iCount,I,1)
Response.Write".gif""ALT="""
Response.WriteMid(iCount,I,1)
Response.Write"""width=20height=27>"
Next
Else
Response.WriteiCount
EndIf
%>
asp是基于web的一种编程技术,可以说是cgi的一种。它可以完成以往cgi程序的所有功能,如计数器、留言簿、公告板、聊天室等等。 |
|