asp 禁止中國訪問

2021-06-01 07:42:06 字數 1168 閱讀 4707

<%

function leletostr(str)

dim stream

set stream=server.createobject("adodb.stream")

with stream

.type=1

.mode=3

.open

.write str

.position = 0

.type = 2

.charset = "gb2312"

leletostr = .readtext

.close

end with

set stream=nothing

end function

'獲取ip所在地區

'開始擷取字元      

startstr = instr(html,"所在地為:")      

endstr = instr(html,"如果該ip")      

html = mid(html,startstr,endstr-startstr)

'再次獲取

if instr(getipaddress(),"中國")>0 then response.end

%>

mysql禁止訪問 mysql禁止外部訪問解決方案

本文主要講述了當mysql禁止外部訪問的解決方案,具有一定的收藏價值,有需要的朋友了解一下吧。1.在埠已經開放的情況下,ubuntu mysql 3306允許遠端訪問 vim etc mysql mysql.conf.d mysqld.cnf 注釋 bind address 127.0.0.1 2....

過濾和禁止中國IP位址訪問的方法

做英文共享軟體的作者,為了防止軟體被破解,經常需要設定禁用中國地區的ip位址,但很多人不知道怎麼進行設定。如何在apache主機上設定禁用中國的ip位址訪問,其實很簡單,修改apache的.htaccess檔案,在檔案中加入下面的語句,即可阻止大部分中國使用者的訪問。當然,這份ip過濾表有些舊,某些...

ASP 禁止頁面被快取

1 在asp頁面首部加入 response.buffer true response.expiresabsolute now 1 response.expires 0 response.cachecontrol no cache response.addheader pragma no cache ...