devxlogo

Pass Form Variables Using the GET or POST Method

Pass Form Variables Using the GET or POST Method

When working in the ASP environment, HTML forms are used to pass data from the client browser to the Web server. If the form variables are passed to the Web server using the GET method, then the variables are read from the QueryString collection. In this case, you should retrieve the value from the QueryString collection:

  sVariable = Request.QueryString("txtVariable") 

However, if the variables are passed to the server using the POST method, then the values will be in the Request object’s Forms collection. In this case, you should retrieve the value from the Forms collection:

  sVariable = Request.Form("txtVariable") 
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist