Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 VB.net 中编写一个程序,该程序将读取/写入我的 Web 服务器中的 .php 和 .ini 文件。我想要的是限制人们看到它。例如,如果有人键入“”,他什么也看不到/错误。但是 VB.net 仍然可以访问它!你能告诉我怎么做吗?我努力了
deny from all
但它没有用,它限制了一切的访问!
您的服务器不知道发起 HTTP 请求的原因。它只知道它收到了敲门声。用户代理应该告诉服务器正在连接什么,但这很容易被欺骗。
您需要设置一个身份验证方案,以便您的 VB 程序可以提交其他人不知道的凭据。如果您使用 .NET HTTP 类(例如 HttpWebRequest),请查看 Credentials 属性。