Code to submit credit card information

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

    Code to submit credit card information

    Hello -

    I need to add code to a page that will accept credit card info and process it. The company that will do the processing is authorizenet.co m.

    Problem: I have talked to these people and they have not been clear on how to do this. Additionally, I received from them a 75-page document that gives no examples.

    I was under the impression that it should be something easily accomplished; i.e. a few lines of code in my html.

    Does anyone out there have an example of how to do this?

    Any help you can give me will be greatly appreciated!

    --
    Sandy
  • UncleWobbly

    #2
    Re: Code to submit credit card information

    Often they will provide an https link (SSL = encrypted) that you refernence
    in an inline frame - the "enter your details in the grey box below" type
    stuff.

    H
    =============== =============== =============== ==============
    God, I love top posting... I think it's just super - don't you agree?


    "Sandy" <Sandy@discussi ons.microsoft.c om> wrote in message
    news:AD848E88-B0AE-4FD9-8E5C-05A2507ACB90@mi crosoft.com...[color=blue]
    > Hello -
    >
    > I need to add code to a page that will accept credit card info and process[/color]
    it. The company that will do the processing is authorizenet.co m.[color=blue]
    >
    > Problem: I have talked to these people and they have not been clear on[/color]
    how to do this. Additionally, I received from them a 75-page document that
    gives no examples.[color=blue]
    >
    > I was under the impression that it should be something easily[/color]
    accomplished; i.e. a few lines of code in my html.[color=blue]
    >
    > Does anyone out there have an example of how to do this?
    >
    > Any help you can give me will be greatly appreciated!
    >
    > --
    > Sandy[/color]


    Comment

    • Jeff Cochran

      #3
      Re: Code to submit credit card information

      On Wed, 9 Jun 2004 15:39:01 -0700, "Sandy"
      <Sandy@discussi ons.microsoft.c om> wrote:
      [color=blue]
      >Hello -
      >
      >I need to add code to a page that will accept credit card info and process it. The company that will do the processing is authorizenet.co m.
      >
      >Problem: I have talked to these people and they have not been clear on how to do this. Additionally, I received from them a 75-page document that gives no examples.
      >
      >I was under the impression that it should be something easily accomplished; i.e. a few lines of code in my html.
      >
      >Does anyone out there have an example of how to do this?[/color]

      Your processor does. And they're the only one that can give it to
      you, since we can't tell waht they use for processing credit card
      info.

      Jeff

      Comment

      • Roland Hall

        #4
        Re: Code to submit credit card information

        "Sandy" wrote in message
        news:AD848E88-B0AE-4FD9-8E5C-05A2507ACB90@mi crosoft.com...
        : Hello -
        :
        : I need to add code to a page that will accept credit card info and process
        it. The company that will do the processing is authorizenet.co m.
        :
        : Problem: I have talked to these people and they have not been clear on
        how to do this. Additionally, I received from them a 75-page document that
        gives no examples.
        :
        : I was under the impression that it should be something easily
        accomplished; i.e. a few lines of code in my html.
        :
        : Does anyone out there have an example of how to do this?
        :
        : Any help you can give me will be greatly appreciated!

        Hi Sandy...

        to add... you will not be taking the credit card info unless you have a SSL
        link on YOUR site, which requires a certificate. Otherwise you will be
        passing certain information which most likely involves an MD5 hash of
        several specific details of the customer's information and, of course, the
        ticket number.

        Each CC processing service is different so if the 75 page doc is all that is
        available, then it's in there.

        --
        Roland Hall
        /* This information is distributed in the hope that it will be useful, but
        without any warranty; without even the implied warranty of merchantability
        or fitness for a particular purpose. */
        Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
        WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
        MSDN Library - http://msdn.microsoft.com/library/default.asp


        Comment

        Working...