|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
SQLServer是基于服务器端的中型的数据库,可以适合大容量数据的应用,在功能上管理上也要比Access要强得多。在处理海量数据的效率,后台开发的灵活性,可扩展性等方面强大。你是不是偶然想晓得甚么人会见你的站点,甚么工夫,IP地点等。上面我就这个成绩向
人人来论述一下。这个例子利用文本文件来写进用户的信息创立一个logfile.asp放
在每个asp的页面的顶端<!--#IncludeFile="LogFile.asp"-->当有人来会见你
的站点logfile.asp主动把他的信息写进LogFile.txt,假如相干的URl一样的话则不
写进文件
File:LogFile.asp
<%
DimValidEntryLogvariable
Firstsetthatthislogisvalid
ValidEntry=True
IfSessionVariable"LogIn"isnotempty
thatmeanthispersonhasalreadybeenlogged
thensetValidLogtoFalse
IfnotIsEmpty(Session("LogIn"))thenValidEntry=False
Hereyoucanadddifferentrestriction
Ifthereferingurlisfromsamesite
dontwritetologfile
IfLeft(Request.ServerVariables("HTTP_REFERER"),17)
="http://devasp.com"Then
ValidEntry=False
Endif
IfLeft(Request.ServerVariables("HTTP_REFERER"),21)
="http://www.devasp.com"Then
ValidEntry=False
EndIf
NowifValidEntryisTruethenentertologfile
IfValidEntryThen
ConstForAppending=8
ConstCreate=true
DimFSO
DIMTS
DIMMyFileName
DimstrLog
MyFileName=Server.MapPath("MyLogFile.txt")
SetFSO=Server.CreateObject("Scripting.FileSystemObject")
SetTS=FSO.OpenTextFile(MyFileName,ForAppending,Create)
StoreallrequiredvaluesinstrLog
strLog="<br><P><B>"&now&"</B>"
strLog=strLog&Request.ServerVariables("REMOTE_ADDR")&""
strLog=strLog&Request.ServerVariables("HTTP_REFERER")&""
strLog=strLog&Request.ServerVariables("HTTP_USER_AGENT")&"<BR>"
WritecurrentinformationtoLogTextFile.
TS.writestrLog
TS.Writeline""
CreateasessionvarialbetochecknexttimeforValidEntry
Session("LogIn")="yes"
SetTS=Nothing
SetFSO=Nothing
EndIf
%>
ASP.NET和ASP的比较,技术上比较已经没什么可说的了.新一代在大部分程度来说当然是比旧一代好了.关键看你对所做软件的理解了.因人而定.会写的话也可能比ASP.NET写得更有效率和更方便重用 |
|