1

我必须为我正在使用的某个 IP 地址屏蔽某个 div,这里是代码:

 <%
Dim sBlockedIP
sBlockedIP = Request.ServerVariables("REMOTE_ADDR")
'check if the IP is the one that is blocked
If sBlockedIP = "00.000.00.00" Then
'if IP address is banned then redirect to no_access.asp
Response.Redirect "no_access.asp"
End If
%> 

这是需要阻止此 IP 的 html

    <div id="social_media_outer">
      <div id="social_media">
      <div id="fb-root"> <script src="#">
      </script><fb:like href="" send="true" layout="button_count" 
show_faces="false" action="recommend" border="6" font="">
      </fb:like>
      <span  class='st_linkedin' >
      </span></span>
      <span  class='st_facebook' >
      </span>
      <span  class='st_sharethis' st_title="#"></span>
      <a href="http://twitter.com/share" data-count="none"><img src="#" style="position:relative;
      bottom:-4px; border:none;" /></a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script><span class="st_email" ></span>
      <a href="javascript:print(document)"><img src="http://www.gosh.org/facebook/sharethis/print_icon.gif" style="position:relative;
      bottom:-4px; border:none;" /></a>

 </div>
</div>
</div> 

有人可以帮忙吗。

4

2 回答 2

1

为什么不放一个简单的If Else

If sBlockedIP <> "123.456.789.000" Then

   <div id="social_media_outer">
      <div id="social_media">
      <div id="fb-root"> <script src="#">
      </script><fb:like href="" send="true" layout="button_count" 
show_faces="false" action="recommend" border="6" font="">
      </fb:like>
      <span  class='st_linkedin' >
      </span></span>
      <span  class='st_facebook' >
      </span>
      <span  class='st_sharethis' st_title="#"></span>
      <a href="http://twitter.com/share" data-count="none"><img src="#" style="position:relative;
      bottom:-4px; border:none;" /></a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script><span class="st_email" ></span>
      <a href="javascript:print(document)"><img src="http://www.gosh.org/facebook/sharethis/print_icon.gif" style="position:relative;
      bottom:-4px; border:none;" /></a>

 </div>
</div>
</div> 

Else

End If

我可能真的过于简单化了......

于 2012-05-01T16:00:46.893 回答
1

Response.Redirect如果您只希望阻止生成的部分内容(并且使用基于 IIS IP 的安全工具来阻止整个页面比对其进行编码更好),则First不是合适的工具。

这会做到

 <%
      Function CanShowProtectedContent()
           CanShowProtectedContent = Request.ServerVariables("REMOTE_ADDR") <> "xxx.xxx.xxx.xxx"
      End If
 %>

 ...

 <div id="social_media_outer"> 
 <% If CanShowProtectedContent()  Then %>
    <!-- your normal content here -->     
 <% Else %>
    <span>Content unavailable</span>
 <% End If %>
 </div>

尽管您应该考虑加强CanShowProtectedContent以支持被禁止的 IP 地址和/或子网列表。还将该集存储为 ASP 包含文件。

于 2012-05-01T16:01:50.907 回答