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.
我怎么能实现像 php 的东西
if($_SERVER['REQUEST_METHOD'] != 'POST')
使用 vb.net - 我试图阻止人们访问网页,除非他们通过表单帖子定向到那里。
谢谢
该HttpRequest对象具有表明这一点的HttpMethod属性。该对象可以通过Request基Page类上可用的属性访问(因此可以从任何页面访问)。
HttpRequest
HttpMethod
Request
Page
值得注意的是,这不是一种“保护”页面的方法。任何人都可以发出 POST 请求,他们不需要“被表单引导到那里”。