GET is how a file is requested from the server. For instance, by requesting the file "/source/page01.asp", the browser sends the command "GET /source/page01.asp". Therefore, to send info with the GET command you need to request the page "/source/page01.asp?Variable=Value". The server knows to pass anything after the "?" as data.
<%= Request.QueryString("variable_name") %>