下面是乔治老师的代码,一切正常。
<%
Dim aa, ipList, ip, found
aa = Request.ServerVariables("REMOTE_ADDR")
ipList = Array("99.88", "110.52", "43.80.235", "11.9.67.180")
found = False
For Each ip In ipList
If InStr(aa, ip) > 0 Then
found = True
Exit For
End If
Next
If found Then
Response.Write "ok"
Response.End
End If
%>
但是为什么调用数据库就不行?ipList = Array(""&Rs("ip")&"")
Rs("ip") 输出就是这样:"99.88", "110.52", "43.80.235", "11.9.67.180"
我只想 ipList = Array(这里从数据库调用)
请问应该怎样写?
数据库的内容是这样的:
99.88, 110.52, 43.80.235, 11.9.67.180
也可以是这样的:
"99.88", "110.52", "43.80.235", "11.9.67.180"
只要哪种能用就可以。谢谢。