ASP.NET web.config:设置IP地址的访问安全性(以xml格式)

时间:2017-06-01 03:38:14

标签: asp.net xml web-services security

尝试将xml代码设置为仅允许单个IP地址访问ASP.Net服务器上的根文件夹和所有子文件夹。对于例如IP地址如8.8.8.8,下面的代码似乎不允许来自8.8.8.8的访问请求。授权标签中是否存在使基于IP的访问无效的内容?

chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) {
     chrome.tabs.sendMessage(tabs[0].id, { greeting: "hello" }, function (response) {
          console.log(response.farewell);
     });
});

0 个答案:

没有答案