Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Response.Write " A is " & Request.QueryString("a") & "<br>"
Response.Write " B is " & Request.QueryString("b") & "<br>"
<a href="nextpage.asp?<%=Request.QueryString%>">Go To Next Page</a>
dim strName
strName = request.querystring("name")
response.write strName
<a href="next.asp?name=<%strName%>">next</a>