Page Lifecycle ASP.Net Tutorial

< html>
   
      Submit a named parameter via POST
   

   
      

Name:


      
      
   


File: NextPage.aspx
<%@ 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
%>