Provider | Primary DNS Server | Secondary DNS Server |
---|---|---|
Level31 | 209.244.0.3 | 209.244.0.4 |
Google2 | 8.8.8.8 | 8.8.4.4 |
Google IPv6 | 2001:4860:4860::8888 | 2001:4860:4860::8844 |
Securly3 | 184.169.143.224 | 184.169.161.155 |
Comodo Secure DNS | 8.26.56.26 | 8.20.247.20 |
OpenDNS | 208.67.222.222 | 208.67.220.220 |
DNS Advantage | 156.154.70.1 | 156.154.71.1 |
Norton DNS | 198.153.192.1 | 198.153.194.1 |
ScrubIT4 | 67.138.54.120 | 207.225.209.77 |
OpenNIC5 | 69.164.208.50 | 216.87.84.211 |
Public-Root6 | 199.5.157.131 | 208.71.35.137 |
SmartViper | 208.76.50.50 | 208.76.51.51 |
Monthly Archives: 7 月 2012
?ASP VBScript??????
????ASP???????????OOP??????????JAVA?PHP?this??????????
???? Me
?????? this ?? self ??????. VBScript??????? Me?
<% Class meClass Private i_count Public Property Get Count i_count = i_count + 1 Count = i_count End Property Public Property Get countTwice countTwice = Me.Count + Me.Count End Property Public Property Let Count(c) i_count = c End Property End Class %>
?????
<% Dim meTest Set meTest = New meClass meTest.Count = 10 Response.Write(meTest.countTwice) Set meTest = Nothing %>
??????23???11 + 12??????Me.count?????????