I have a form that submits data to a cgi program using the post method. I have written a asp program which calls the same cgi and hands it the data. The only problem is that when the cgi program sends the html to the user, the data I supplied is appended to the URL. I do not want the user to see this infomation.

response.redirect("http://pcw0082/scripts/cgiclnt.exe/extrapathinfo/?name1=value1&name2=value2")

Can anyone tell me how to stop the name/value pairs appearing on the address line ?.

thanks.