posting form variables from site A to site B

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • tamaker

    posting form variables from site A to site B

    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]

    #2
    Re: posting form variables from site A to site B

    tamaker wrote:[color=blue]
    > 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.[/color]

    Begin here:

    --
    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"


    Comment

    • tamaker

      #3
      Re: posting form variables from site A to site B

      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:[color=blue]
      > tamaker wrote:[color=green]
      > > 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.[/color]
      >
      > 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"[/color]

      Comment

      • Kyle Peterson

        #4
        Re: posting form variables from site A to site B

        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.goog legroups.com...[color=blue]
        > 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:[color=green]
        >> tamaker wrote:[color=darkred]
        >> > 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.[/color]
        >>
        >> 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"[/color]
        >[/color]


        Comment

        • Anthony Jones

          #5
          Re: posting form variables from site A to site B


          "tamaker" <tamaker@gmail. com> wrote in message
          news:1150764572 .493384.265500@ r2g2000cwb.goog legroups.com...[color=blue]
          > 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.
          >[/color]

          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.
          [color=blue]
          >
          >
          > Bob Barrows [MVP] wrote:[color=green]
          > > tamaker wrote:[color=darkred]
          > > > 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.[/color]
          > >
          > > 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"[/color]
          >[/color]


          Comment

          Working...