藍麗Net留言系統說明手冊 1:藍麗Net留言系統亮點提示 藍麗Net留言系統雖然開發的時間較短,但實為技術內涵較高,有其獨特的風格特點 主要用途:使訪客自由留言,管理員(站長)自由回復,或用于信息發布,資料存儲 綜合特點(采用較新的asp.net+xml+xsl設計,一應功能俱全,老搭檔新品種該有的功能都有了 版面清爽,速度流暢,操作方便,安全穩定,安裝管理方便,占用資源少,占用空間少 PS:FYW真能吹^-^) 性能方面:普通PC機訪問本系統主頁,能夠達到50-200MS,這方面Xml若遜于Html方式輸出的速度 安裝方面:非常簡單,幾乎無需改動或根據您的要求少加改動,上傳至服務器即可正常運行 安全方面:在本人已知的Asp,Asp.net存在的(數據提交,Sql注入,COOKIEs欺騙,跨站提交,注水提交)等安全隱患上下了許多工夫,經仔細測試在這些方面約能達到98%的安全,至于 本人未接觸到的安全隱患方面,請自行升級或提示本人改正 2:安裝調試藍麗Net留言系統 ---既然看到了本幫助文件,那相信此時您已將本系統壓縮包(rar,zip)解壓 ---首先,請確認您的服務器操作系統支持運行Asp.net,IE版本在5.5以上,或者您有遠程虛擬主機
標簽:
Net
上傳時間:
2013-12-15
上傳用戶:天涯
This package provides a complete http client library. It currently implements most of the relevant parts of the HTTP/1.0 and HTTP/1.1 protocols, including the request methods HEAD, GET, POST and PUT, and automatic handling of authorization, redirection requests, and COOKIEs. Furthermore the included Codecs class contains coders and decoders for the base64, quoted-printable, URL-encoding, chunked and the multipart/form-data encodings. The whole thing is free, and licenced under the GNU Lesser General Public License (LGPL) (note that this is not the same as the GPL).
標簽:
implements
currently
complete
provides
上傳時間:
2014-01-16
上傳用戶:siguazgb
asp實現限制一個ip只能訪問一次的方法
<%
'/////////////////////////////////////////////////////
'// //
'//作用:一個IP地址只允許訪問本頁一次 //
'//引用:<!-- #include file="Check_Ip.asp" --> //
'// //
'/////////////////////////////////////////////////////
'Response.Charset = 936 '設置輸出編碼為簡體中文
'Response.Buffer = false '關閉緩沖區
Dim Fso,ts,IpList,Cfs
'設置COOKIEs函數
Function SetCookie()
Response.COOKIEs("IsBrow") = "Brow"
Response.COOKIEs("IsBrow").Expires = Date+365
End Function
'記錄IP地址函數
Function WriteIp(FileName, IpAddress)
Set Fso = Server.CreateObject("Scripting.FileSystemObject")
Set ts = Fso.OpenTextFile(Server.MapPath(FileName),8,true)
ts.WriteLine IpAddress
ts.Close
Set ts = Nothing
Set Fso = Nothing
End Function
'讀取IP地址函數
Function ReadIpList(FileName)
Set Fso = Server.CreateObject("Scripting.FileSystemObject")
If Not Fso.FileExists(Server.MapPath(FileName)) Then
CreateFile("Iplist.txt")
Exit Function
End If
Set ts = Fso.OpenTextFile(Server.MapPath(FileName))
Iplist = ts.ReadAll
ts.Close
Set ts = Nothing
Set Fso = Nothing
ReadIpList = Iplist
End Function
'創建文件函數
Function CreateFile(FileName)
Set Fso = Server.CreateObject("Scripting.FileSystemObject")
Set Cfs = Fso.CreateTextFile(Server.MapPath(FileName))
Cfs.Close
Set Cfs = Nothing
Set Fso = Nothing
End Function
'關閉當前IE窗口函數(注:IE6下通過,其他瀏覽器未測試)
Function CloseWindow()
'Response.Write "<script>window.location='javascript:window.opener=null;window.close();'</script>"
Response.Redirect "http://www.baidu.com"
End Function
Ip = Request.ServerVariables("REMOTE_ADDR") '獲取瀏覽者IP地址
Cookie = Request.COOKIEs("IsBrow") '獲取當前COOKIEs
'Response.Write Cookie
If Request.ServerVariables("HTTP_X_FORWARDED_FOR") <> "" Then
Response.Write "本站不允許使用代理訪問"
Response.End()
Else
If Cookie = "Brow" Then
CloseWindow()
Else
If Instr(ReadIpList("Iplist.txt"),Ip) <>0 Then
CloseWindow()
Else
WriteIp "Iplist.txt" , Ip
End If
SetCookie()
End If
End If
%>
標簽:
asp
訪問
上傳時間:
2016-07-14
上傳用戶:helei0915