PDA

View Full Version : ASP: Send POST to another URL?



kryptx
March 20th, 2003, 14:54
Hello,

I am trying to write an ASP script that will submit a form to an external URL. I would prefer to use the POST method but even a function to URL-Encode all form-submitted variables in the Request object (so that I can manually perform a GET by redirecting the user's browser) would be helpful.

Goofy
March 28th, 2003, 11:21
actually u can submit form data to any url (be it internal or external) this is the url that you provide in the <form action=''> tag.
But the file your are submitting the data to, should be an ASP file to request the variables that have been passed using POST else you will have to use the GET method.