<%@ Page Language="vb" %>
Displaying the HTTP headers collection in ASP.NET
<%
Select Case Request.HttpMethod
Case "POST"
Response.Write("POST requests not allowed!
")
Response.End
Case "HEAD"
Response.Write("HEAD requests not allowed!
")
Response.End
Case "GET"
'Process request
Response.Write("GET requests are allowed!
")
Case Else
Response.Write("Unknown request: not allowed!
")
Response.End
End Select
%>