How is the method of passing parameter from query string to my string variable in my ASP session?Also what is syntax of my query string?Thanks everyone.
yourscript.asp?key1=value1&key2=value2&key3=value3 (etc., but you don't want your querystring too long or it will truncate, don't know the exact limit...)
then in yourscript.asp, to access the querystring values:
Also, if you don't set a method in your form tag, ie.:
<form name="myform" action="yourstring.asp" method="get">
or, if you set it to "get" as in the example, then your input fields will be sent over in the querystring as shown above.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.