| Author |
posting form variables from site A to site B
|
|
| tamaker 2006-06-19, 7:22 pm |
| I have to pass form data from my site to another organizations site
using POST method... how exactly do I do that? Im familiar with how
to do it within a single site/domain, and cant use querystring... I
dont know where to begin.
| |
| Bob Barrows [MVP] 2006-06-20, 1:36 am |
| tamaker wrote:
> I have to pass form data from my site to another organizations site
> using POST method... how exactly do I do that? Im familiar with how
> to do it within a single site/domain, and cant use querystring... I
> dont know where to begin.
Begin here:
http://www.aspfaq.com/show.asp?id=2173
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
| |
| tamaker 2006-06-20, 1:36 am |
| The only solution here is going to be XML based? I've been given
specific variable names to 'post' to their site... is that still (xml)
the only way here?
Thanks for the reply/feedback.
Bob Barrows [MVP] wrote:
> tamaker wrote:
>
> Begin here:
> http://www.aspfaq.com/show.asp?id=2173
> --
> Microsoft MVP - ASP/ASP.NET
> Please reply to the newsgroup. This email account is my spam trap so I
> don't check it very often. If you must reply off-line, then remove the
> "NO SPAM"
| |
| Kyle Peterson 2006-06-20, 1:36 am |
| the xml parser then most likely which can do a form post for the most part
and send along variables
"tamaker" <tamaker@gmail.com> wrote in message
news:1150764572.493384.265500@r2g2000cwb.googlegroups.com...
> The only solution here is going to be XML based? I've been given
> specific variable names to 'post' to their site... is that still (xml)
> the only way here?
>
> Thanks for the reply/feedback.
>
>
>
> Bob Barrows [MVP] wrote:
>
| |
| Anthony Jones 2006-06-20, 7:25 am |
|
"tamaker" <tamaker@gmail.com> wrote in message
news:1150764572.493384.265500@r2g2000cwb.googlegroups.com...
> The only solution here is going to be XML based? I've been given
> specific variable names to 'post' to their site... is that still (xml)
> the only way here?
>
> Thanks for the reply/feedback.
>
The article shows you how to use the ServerXMLHTTP component to a emulate a
Form POST. The use of the ServerXMLHTTP component is a conveniant way to
access the WinHTTP stack, XML itself need not be involved.
>
>
> Bob Barrows [MVP] wrote:
>
|
|
|
|