you are best just manipulating the original form and changing its method from POST to GET, but in case you cannot do this, you can use this code on the receiving page to redirect the form data to a page that uses the querystring:

Code:
<%@Language=VBScript EnableSessionState=False%>
<% option explicit
Response.Redirect "myPage.asp?" & Request.Form
%>
That's it!