Form Method=GET & ASP Collection Request.QueryString Home » ASP » Communicating with the User » Form Method=GET & Request.QueryString Creating Form Where Method=GET "GetMethod.html" <%@Language=VBScript%> <%Option Explicit %> <html> <head> <title>A Simple Form Using GET Method</TITLE> </HEAD> <body> <form Method=Get Action="GetMethodExample.asp"> Name: <input Type=Text Name=Name><br /> Age: <input Type=Text Name=Age><br /> <br /> <input Type=Submit Value=" Submit "> </Form> </BODY> </HTML> Output of "GetMethod.html" "GetMethod.asp" <%@Language=VBScript%> <%Option Explicit %> <% n = Request.QueryString("Name") a = Request.QueryString("Age") Response.Write("Name : "&n&"<br>") Response.Write("Age : "&a&"<br>") %> Output of "GetMethod.asp" Read more » Share on Facebook Share on Twitter Share on Google Plus RELATED POSTS