Transaction fails in pay pal sandbox account

I have created a pay pal sandbox account viahttps://developer.paypal.comand the account has been created successfully. It automatically creates two account one for buyer and seller in accounts section. I tried to do some test with transactions as my ultimate goal was to get the postback(whether payment success/failure, products purchased) while one the way i planned to do some transaction with sand box account details .So i went documentation tab at the top of pay after i logged in . Under left hand side "Use paypal with" selected "create button" and chosen "Build your paypal button" it redirects me to this link http://paypal.github.io/JavaScriptButtons/From their i got an option of "Customize & Preview" , a modal pops up gave the merchant email id(sandbox account) and then some fake product details(also checked sandbox checkbox). When i saved a pay pal button generates, when i clicked to took me to the payment section there i gave the credentials of sandbox account i got the errorPlease make sure you have entered your email address correctly.
Please re-enter your PayPal password.but i can able to login with these details in pay pal account.Dont know whats wrong.Thanks in advance.

I am so incredibly frustrated, I just want to pay my bill and they won't show me the other numbers for my account number.  I prefer paying my bills through my checking account so I can keep track of what is going out and when but PayPal BillMeLater seems to block ever finding more than the last 4 digits, they even refuse to put my account number on my statement.!!!! 

Similar Messages

  • Pay Pal Credit Account Number?

    I would like to setup bill pay through my bank to make payments to my Pay Pal Account similar to what I did with BillMeLater.  However, I cannot find the account number for Pay Pal Credit anywhere in my login.
    Please let me know how I can locate that so I can setup online bill pay through my bank (I do not want to add that bank account into payPal). Thanks,Melissa

    I am so incredibly frustrated, I just want to pay my bill and they won't show me the other numbers for my account number.  I prefer paying my bills through my checking account so I can keep track of what is going out and when but PayPal BillMeLater seems to block ever finding more than the last 4 digits, they even refuse to put my account number on my statement.!!!! 

  • HT204088 can you use a pay pal account to add credit to an existing iTunes account

    can you use a pay pal account to add credit to an existing iTunes account?

    Yes, I've done it myself.
    See the I do not have an iTunes Store account section of the How to redeem an iTunes Gift Card on a computer section of the following document:
    iTunes Store: How to redeem a code

  • HT1937 I purchase some Apps and get billed to my e-mail address. How I pay the bill with my "Pay Pal" account?

    I purchase some Apps at the Apple Store and get billed to my e-mail address. How I pay my bill with my "Pay Pal" account? Is a bit silly request but I'm a newbie.

    Hello John
    Sorry I haven't got back to you sooner.
    Thanks very much for your help, your solution solved my problem.
    Thanks again and kind regards
    Mike

  • I have set up payment method on i tunes as pal pal but when i try to make the payment it comes back declined,there is no issue on pay pal card it is some kind of glithch with i tunes.I want to use my pal pal account as my primary means of payment but your

    I have successfully created a payment account on I tunes through my pay pay account,however when I attempt to submit the payment,It shows declined.There is not a problem with my pay pal account the problem is with I tunes. can you please help me resolve this issue so I can pay on the account.I want pay pal to be my primary means of payment to I tunes thank you, billpeterfromyubacity

    Hi,
    Troubleshooting a start up script can be difficult. There are some third party programs that also keep logs of start up programs, however for Firefox this may be different.
    Is Firefox a startup program? [http://www.winxptutor.com/msinfo32.htm]
    Its also possible to check the Web developer tools for any scripts in a page: [https://developer.mozilla.org/en-US/docs/Tools/Debugger]
    In the control panel there is also Administrative tools to view event logs, but this may be something a local technician can walk you through.

  • Making CCV field in checkout mandatory for on site credit cards, but not for getting to Pay Pal site

    Hi.  I posted this on December 1st and am still waiting for a response after a failed attept with chat.
    When my clients are making an order, the CCV field, even though it is marked as required, they can actually place an order without entering the CCV.  I’d like the CCV to be required.  A chat rep said Pay Pal and BC don’t require a CCV, but I would like it to be there for extra security.
    I’ve put the correct webform under Module tempaltes > online layouts > registration buy using both html and module insert methods to test it.  Neither worked.
    The rep gave me this code to put at the bottom of my web form (note this is just the bottom of the web form field code as the top and middle have nothing to do with CCV).  The bold text is the extra text that is supposed to make the CCV required. 
    It works. This code does render a CCV requirement for direct credit card transactions on site.  Problem is, if a client selects Pay Pal in my checkout as their choice and clicks "Place Order" a Pop up window appears telling them they must enter their CCV. So its being required for direct CC on site and offsite for Pay Pal.  Of course a CCV shouldn’t needed on that screen if a client wants to pay by going to the Pay Pal website. 
    So I was wondering if you could help me modify the code so that the CCV code IS required for direct credit card purchases on my site, but when a client wants to use Pay Pal, that the CCV required field pop up does NOT appear and the client can be taken to Pay Pal to compete their order.  Many thanks!  My website is trueafricanart.com and I am using the latest BC version and normally Firefox, though I have tested in Safari and IE 9 and 10.
    <script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script>
        <script type="text/javascript">
    //<![CDATA[
    var submitcount44260 = 0;function checkWholeForm44260(theForm){var why = "";if (theForm.PaymentMethodType) why += checkSelected(theForm.PaymentMethodType, "Payment Method");if (!theForm.PaymentMethodType || getRadioSelected(theForm.PaymentMethodType) == 1) { if (theForm.CardName) why += isEmpty(theForm.CardName.value, "Name on Card"); if (theForm.CardNumber) why += isNumeric(theForm.CardNumber.value, "Card Number"); if (theForm.Amount) why += isCurrency(theForm.Amount.value, "Amount"); } if (theForm.WorkPhone) why += isEmpty(theForm.WorkPhone.value, "Work Phone Number"); if (theForm.BillingAddress) why += isEmpty(theForm.BillingAddress.value, "Billing Address"); if (theForm.BillingCity) why += isEmpty(theForm.BillingCity.value, "Billing City"); if (theForm.BillingState) why += isEmpty(theForm.BillingState.value, "Billing State"); if (theForm.BillingZip) why += isEmpty(theForm.BillingZip.value, ""); if (theForm.BillingCountry) why += checkDropdown(theForm.BillingCountry.value, "Billing Country");if (theForm.CardCCV) why += isNumeric(theForm.CardCCV.value, "CCV Number");if (theForm.CardCCV) why += isEmpty(theForm.CardCCV.value, "CCV Number"); if (theForm.EmailAddress) why += checkEmail(theForm.EmailAddress.value); if (theForm.FirstName) why += isEmpty(theForm.FirstName.value, "First Name"); if (theForm.LastName) why += isEmpty(theForm.LastName.value, "Last Name"); if (theForm.CAT_Custom_511186) why += checkSelected(theForm.CAT_Custom_511186, "Billing Address same as shipping address?");if(why != ""){alert(why);return false;}if(submitcount44260 == 0){submitcount44260++;theForm.submit();return false;}else{alert("Form submission is in progress.");return false;}}
    //]]>
    </script>
    </form>

    I thought I had and a few others in that with the answer. Because it was a javascript issue.
    As I said in that other post, The code you get from the registration form has a condition on the radio options, none of the fields for credit card become required if you choose paypal.
    EG:
    if (!theForm.PaymentMethodType || getRadioSelected(theForm.PaymentMethodType) == 1)
                        if (theForm.CardName) why += isEmpty(theForm.CardName.value, "Name on Card<br>");
                        if (theForm.CardNumber) why += isNumeric(theForm.CardNumber.value, "Card Number<br>");
                        if (theForm.Amount) why += isCurrency(theForm.Amount.value, "Amount<br>");
    And in there and when that case is met you put in the CCV script.

  • Pay pal payment problem still unsolved

    Just wanted to say that customer support service in POLAND is a joke. They hired foreigners who probably use translator to communicate with their clients in Poland and they are pretty much useless.I had problem with pay pal payment this month, they charged me money, but I got the same message as everyone saying that there was a problem with my payment and that I should update my payment info, which I did and then got charged AGAIN. Those ladies from "customer support" downgraded my account to free, even though the payment was taken from my account (TWICE) and I presented them with transaction number or whatever. I just wish Spotify would take their clients EVERYWHERE equally seriously and actually hire people that can solve problems.I just don't know who else I could message, as I'm done talking to the Polish customer support service because they are clearly unable to solve my problem and expect me to sign up for the premium account ONCE AGAIN (they actually said that) and pay again, I guess? And I'm not doing that. Omg, I haven't been this annoyed with a customer service in a long time lol.

    Hi MMyers719 -
    Thanks for reaching out to us here. I am sorry to hear that you are running into this. This is something we would have to take a look into your account regarding though. You can click 'contact us' at the bottom of any of our pages to get a number to call into us directly. You can also reach out to us on Twitter or facebook. We would be happy to take a look.
    - Adam

  • Help please: Issue setting up collecting payments using Pay Pal

    Our form is created, our Pay PAL account is created and banking info confirmed.  Pay Pal account was registered and permissions granted.
    Defined the purchased filelds(1) tied to total amount due...and added a fixed 2.00 handling charge.  Basically everything appears okay.
    When I do the test the submit button is changed to proceed to checkout(and i see mc, visa, discover logos as well), but instead of going to screen where I can enter Credit card information it goes to pay pal login screen for our account.  Something is obviouslly set up wrong.  Can you help me with what could be the issue?  I was hoping to finish form setup soon.

    Hi;
    I would be happy to take a look.  You can share your form with me following these instructions http://forums.adobe.com/docs/DOC-2462 with [email protected]
    I don't' know what exactly you are seeing on the Paypal page, but the correct behavior after clicking "Proceed to checkout" is to be taken to a Paypal login page, it sounds like it is working correctly
    Since you are on your own computer where you sign into Paypal it would show your Paypal account/login like this:
    In the upper right it shows the amount of the transaction and if you sign in with a different Paypal account (can't sign in with the same account you registered) it will continue with the transaction, alternatively to test you can click the "Check out as guest" next to "Don't have an account" where you would enter payment information.
    If something else is happening your can share your form and I'll take a look.
    Thanks,
    Josh

  • Why am I getting ErrorCode: OperationNotSupported _Code: 204 When I am trying to get campaigns from sandbox account

    Hi All,
          Seasonal Greetings. 
          I am new one to bing ads . I am trying to get Campaigns from my sandbox account. The following is my code.                    
     <?php
    // To ensure that a cached WSDL is not being used,
    // disable WSDL caching.
    ini_set("soap.wsdl_cache_enabled", "0");
    try
        //$accountId = <youraccountid>; // Application-specific value.
         $accountId = "8951263";
        // Use either the sandbox or the production URI.
        // This example is for the sandbox URI.
        $URI =
            "https://api.sandbox.bingads.microsoft.com/Api/Advertiser/v8/";
        // The following commented-out line contains the production URI.
        //$URI = "https://adcenterapi.microsoft.com/api/advertiser/v8/";
        // The API namespace.
        $xmlns = "https://adcenter.microsoft.com/v8";
        // The proxy for the Campaign Management Web service.
        $campaignProxy = 
            $URI . "CampaignManagement/CampaignManagementService.svc?wsdl";
        // The name of the service operation that will be called.
        $action = "GetCampaignsByAccountId";
        // The user name, password, and developer token are
        // expected to be passed in as command-line
        // arguments.
        // $argv[0] is the PHP file name.
        // $argv[1] is the user name.
        // $argv[2] is the password.
        // $argv[3] is the developer token.
        if ($argc !=4)
            printf("Usage:\n");
            printf(
              "php file.php username password devtoken\n");
            exit(0);
        $username = $argv[1];
        $password = $argv[2];
        $developerToken = $argv[3];
        $applicationToken = "";
        // Create the SOAP headers.
        $headerApplicationToken = 
            new SoapHeader
                $xmlns,
                'ApplicationToken',
                $applicationToken,
                false
        $headerDeveloperToken = 
            new SoapHeader
                $xmlns,
                'DeveloperToken',
                $developerToken,
                false
        $headerUserName = 
            new SoapHeader
                $xmlns,
                'UserName',
                $username,
                false
        $headerPassword = 
            new SoapHeader
                $xmlns,
                'Password',
                $password,
                false
        $headerCustomerAccountId = 
            new SoapHeader
                $xmlns,
                'CustomerAccountId',
                $accountId,
                false
        // Create the SOAP input header array.
        $inputHeaders = array
            $headerApplicationToken,
            $headerDeveloperToken,
            $headerUserName,
            $headerPassword,
            $headerCustomerAccountId
        // Create the SOAP client.
        $opts = array('trace' => true);
        $client = new SOAPClient($campaignProxy, $opts); 
        // Specify the parameters for the SOAP call.
        $params = array
            'AccountId' => $accountId,
        // Execute the SOAP call.
        $result = $client->__soapCall
            $action,
            array( $action.'Request' => $params ),
            null,
            $inputHeaders,
            $outputHeaders
         print "Successful $action call.\n";
         print "TrackingId output from response header: "
              . $outputHeaders['TrackingId']
              . ".\n";
         // Insert a blank line to separate the text that follows.
         print "\n";
        // Retrieve the campaigns.
        if (isset(
            $result->Campaigns
            if (is_array($result->Campaigns->Campaign))
                // An array of campaigns has been returned.
                $obj = $result->Campaigns->Campaign;
            else
                // A single campaign has been returned.
                $obj = $result->Campaigns;
            // Display the campaigns.
            foreach ($obj as $campaign)
                print "Name          : " . $campaign->Name . "\n";
                print "Description   : " . $campaign->Description . "\n";
                print "MonthlyBudget : " . $campaign->MonthlyBudget . "\n";
                print "BudgetType    : " . $campaign->BudgetType . "\n";
                print "\n";
    catch (Exception $e)
        print "$action failed.\n";
        if (isset($e->detail->ApiFaultDetail))
          print "ApiFaultDetail exception encountered\n";
          print "Tracking ID: " . 
              $e->detail->ApiFaultDetail->TrackingId . "\n";
          // Process any operation errors.
          if (isset(
              $e->detail->ApiFaultDetail->OperationErrors->OperationError
              if (is_array(
                  $e->detail->ApiFaultDetail->OperationErrors->OperationError
                  // An array of operation errors has been returned.
                  $obj = $e->detail->ApiFaultDetail->OperationErrors->OperationError;
              else
                  // A single operation error has been returned.
                  $obj = $e->detail->ApiFaultDetail->OperationErrors;
              foreach ($obj as $operationError)
                  print "Operation error encountered:\n";
                  print "\tMessage: ". $operationError->Message . "\n"; 
                  print "\tDetails: ". $operationError->Details . "\n"; 
                  print "\tErrorCode: ". $operationError->ErrorCode . "\n"; 
                  print "\tCode: ". $operationError->Code . "\n"; 
          // Process any batch errors.
          if (isset(
              $e->detail->ApiFaultDetail->BatchErrors->BatchError
              if (is_array(
                  $e->detail->ApiFaultDetail->BatchErrors->BatchError
                  // An array of batch errors has been returned.
                  $obj = $e->detail->ApiFaultDetail->BatchErrors->BatchError;
              else
                  // A single batch error has been returned.
                  $obj = $e->detail->ApiFaultDetail->BatchErrors;
              foreach ($obj as $batchError)
                  print "Batch error encountered for array index " . $batchError->Index . ".\n";
                  print "\tMessage: ". $batchError->Message . "\n"; 
                  print "\tDetails: ". $batchError->Details . "\n"; 
                  print "\tErrorCode: ". $batchError->ErrorCode . "\n"; 
                  print "\tCode: ". $batchError->Code . "\n"; 
        if (isset($e->detail->AdApiFaultDetail))
          print "AdApiFaultDetail exception encountered\n";
          print "Tracking ID: " . 
              $e->detail->AdApiFaultDetail->TrackingId . "\n";
          // Process any operation errors.
          if (isset(
              $e->detail->AdApiFaultDetail->Errors
              if (is_array(
                  $e->detail->AdApiFaultDetail->Errors
                  // An array of errors has been returned.
                  $obj = $e->detail->AdApiFaultDetail->Errors;
              else
                  // A single error has been returned.
                  $obj = $e->detail->AdApiFaultDetail->Errors;
              foreach ($obj as $Error)
                  print "Error encountered:\n";
                  print "\tMessage: ". $Error->Message . "\n"; 
                  print "\tDetail: ". $Error->Detail . "\n"; 
                  print "\tErrorCode: ". $Error->ErrorCode . "\n"; 
                  print "\tCode: ". $Error->Code . "\n"; 
        // Display the fault code and the fault string.
        print $e->faultcode . " " . $e->faultstring . ".\n";
        // Output the last request.
        print "Last SOAP request:\n";
        print $client->__getLastRequest() . "\n";
    ?>
    http://msdn.microsoft.com/en-us/library/bing-ads-campaign-management-php-samples-get-campaigns(v=msads.80).aspx
    But I am getting responce 
    GetCampaignsByAccountId failed.
    ApiFaultDetail exception encountered
    Tracking ID: efa654c5-b112-4e96-8c3d-79bac7e70112
    Operation error encountered:
    Message: This operation is not supported.
    Details: 
    ErrorCode: OperationNotSupported
    Code: 204
    s:Server Invalid client data. Check the SOAP fault details for more information.
    Last SOAP request:
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://adcenter.microsoft.com/v8"><SOAP-ENV:Header><ns1:ApplicationToken></ns1:ApplicationToken><ns1:DeveloperToken>BBD37VB98</ns1:DeveloperToken><ns1:UserName>-XXXXXX-</ns1:UserName><ns1:Password>-XXXXX-</ns1:Password><ns1:CustomerAccountId>8951263</ns1:CustomerAccountId></SOAP-ENV:Header><SOAP-ENV:Body><ns1:GetCampaignsByAccountIdRequest><ns1:AccountId>8951263</ns1:AccountId></ns1:GetCampaignsByAccountIdRequest></SOAP-ENV:Body></SOAP-ENV:Envelope>
    Please Help me to get out of this .  
    Thank you in advance.
    Deepa Varma 

    Hello Nalin,
              Thank you for the reply . Now I am using
    $campaignProxy ="https://api.sandbox.bingads.microsoft.com/Api/Advertiser/CampaignManagement/v9/CampaignManagementService.svc?wsdl" ;
    // The API namespace.
        $xmlns = "https://adcenter.microsoft.com/v9";
        $xmlns = "https://bingads.microsoft.com/AdIntelligence/v9";
    But I am getting 
    GetCampaignsByAccountId failed.
    AdApiFaultDetail exception encountered
    Tracking ID: ca31d743-7b7b-4479-8082-44997d60d549
    Error encountered:
    Message: Authentication failed. Either supplied credentials are invalid or the account is inactive
    Detail: 
    ErrorCode: InvalidCredentials
    Code: 105
    s:Server Invalid client data. Check the SOAP fault details for more information.
    Last SOAP request:
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="https://bingads.microsoft.com/CampaignManagement/v9" xmlns:ns2="https://adcenter.microsoft.com/v8"><SOAP-ENV:Header><ns2:ApplicationToken></ns2:ApplicationToken><ns2:DeveloperToken>BBD37VB98</ns2:DeveloperToken><ns2:UserName>vbridgellp</ns2:UserName><ns2:Password>XXXX</ns2:Password><ns2:CustomerAccountId>8951263</ns2:CustomerAccountId></SOAP-ENV:Header><SOAP-ENV:Body><ns1:GetCampaignsByAccountIdRequest><ns1:AccountId>8951263</ns1:AccountId></ns1:GetCampaignsByAccountIdRequest></SOAP-ENV:Body></SOAP-ENV:Envelope>
    I am able to login to sand box UI and see my campaigns. What may be reason for the error ? 
    Thank you in Advance. 
    Deepa Varma

  • "Pay Pal is not supported on this device"

    I have updated my iTunes account and my Pay Pal account information but am still getting "Pay Pal is not supported on this device" message on my iPhone.  Anyone else?  How do I fix this?

    I had this same problem also.  The problem has to do with your credit card number associated with you iCloud account.  To solve this problem, you need to update your credit card/payment information by doing the following on your iPad / iPhone / iTouch:
         Settings > iCloud > click on your account > Payment Information
    Update this section with your correct credit card information and Save.

  • How to use pay Pal payment method?

    Hello there! i was trying to buy a movie using my pay pal account, but after clcking on the pay pal option asks to click on the link to validate pay pal account, but nothing happens when i click on the link! thanks

    Liam is correct.
    You have to make sure that you have IPN enabled with the return URL in there and also return URL added to Website Selling preferences.
    Your return URL would be http://www.colinpearce.com/PaymentProcess.aspx
    Cheers,
    -mario

  • In App Purchase Error, ( Transaction Failed Cannot connect to iTunes Store)

    O.k. on my iPhone when I'm in an app I tried to purchase something and it won't let me by saying, Transaction Failed, Cannot Connect to iTunes Store.. But I'm able to use the same app on my iPod touch and I can purchase what I needed.... So can somebody help me figure out what the reason is behind it? Both the iPhone and the Ipod has the same account information and both uses the same computer to connect to iTunes.... So why does one work and the other doesn't? Also its an iPhone 3Gs...

    Although you may be using the same iTunes Account, things can get a little strange if you have different AppleID's for each device. On your device, check settings ==> Store. The AppleID for that device is listed there. It can be confusing because syncing to the same iTunes account is not the same as managing App and purchases through the iTunes Store Account.
    On your iTunes window the uppe right corner shows which AppleStore ID is logged in. If it turns out they are different, simply log out of the store on iTunes, and log in with the other account. Download the updates. Log out and then back in to the other account.
    As an alternative, download the updates on the device they were purchased. Sync to iTunes, and the updated download be transferred back to iTunes and available to the other devices syncing with iTunes.
    Or....... if your iPhone is Airplane Mode, turn that Airplane mode off and ignore everything from above.

  • Pay pal and iweb

    i am trying to set up a pay pal account using my iweb site.
    paypal has buttons (ex: donate now) that are in html format. in order to use these buttons one must copy and paste the code they provide for us into our web site.
    iweb does not work this way.
    any thoughts?

    art of music,
    Welcome to the iWeb forums.
    It's fairly simple to place the html code into your website, but it has to be done using a text editor, after you publish your site. It isn't hard to do at all. Take a look at Basic Instructions for HTML Additions to any iWeb page: in Varkgirl's Aardvarkland site. The instructions are clear and simple to follow.
    Mark

  • Pay Pal payment Group not saved to order if Gift Card is being used.

    In my application I have credit card, pay pal and gift card payment types.
    Each of these types work just fine on their own.
    I can get credit card and gift card payment groups to show up on a single order, but for some reason when doing a pay pal and gift card combo, only the gift card is showing up. The pay pal processor chain is not being kicked off. No errors are being thrown.
    Here is the chain if that helps:
    <pipelinemanager>
         <pipelinechain name="payPalProcessorChain" transaction="TX_REQUIRED" headlink="createPayPalInfo">
         <pipelinelink name="createPayPalInfo" transaction="TX_MANDATORY">
         <processor jndi="/atg/commerce/payment/processor/ProcCreatePayPalInfo"/>
         <transition returnvalue="1" link="processPayPal"/>
         </pipelinelink>
         <pipelinelink name="processPayPal" transaction="TX_MANDATORY">
              <processor jndi="/atg/commerce/payment/processor/ProcProcessPayPal"/>
              </pipelinelink>
         </pipelinechain>
         <pipelinechain name="giftCardProcessorChain" transaction="TX_REQUIRED" headlink="createGiftCardInfo">
              <pipelinelink name="createGiftCardInfo" transaction="TX_MANDATORY">
                   <processor jndi="/atg/commerce/payment/processor/ProcCreateGiftCardInfo"/>
                   <transition returnvalue="1" link="processGiftCard"/>
              </pipelinelink>
              <pipelinelink name="processGiftCard" transaction="TX_MANDATORY">
                   <processor jndi="/atg/commerce/payment/processor/ProcProcessGiftCard"/>
              </pipelinelink>
         </pipelinechain>
    </pipelinemanager>

    The problem here was the way the PayPal logic is created and used. So a rewrite of the logic to use OTB ATG best practices - piepline processors was done to address the issue

  • How to pass drop down selection to pay pal when "Add to cart" is clicked

    I have a drop down that is populated from my items table..
    the drop down displays fine and you can pick from any of them
    items.. issue
    im having is that i need that value passed to pay pal.. but
    if i select any
    of the items and hit the add to cart, the value that is being
    passed is the
    first one in the list all the time.. ( actually its not even
    the first one
    in the list ) its selecting the 2nd option which as seen
    below woudl be 94
    MVP instead of the blank value for the Please Select
    Here is my drop down code:
    <select name="item_name" id="extra">
    <option value="">Please Select </option>
    <option value="94 MVP">94 MVP</option>
    <option value="94/95 Champs">94/95
    Champs</option>
    <option value="HOF 08">HOF 08</option>
    <option value="94 Finals MVP">94 Finals
    MVP</option>
    <option value="Top 50">Top 50</option>
    </select>
    Here is my paypal code:
    <form target="paypal"
    action="https://www.paypal.com/cgi-bin/webscr"
    method="post">
    <input type="hidden" name="cmd" value="_cart">
    <input type="hidden" name="add" value="1">
    <input type="hidden" name="business"
    value=Request.Form("email")>
    <input type="hidden" name="item_name"
    value=Request.Form("item_name")>
    <input type="hidden" name="item_number"
    value=Request.Form("item_num")>
    <input type="hidden" name="amount"
    value=Request.Form("price")>
    <input type="hidden" name="currency_code" value="USD">
    </form>
    I have removed our personal account information from the code
    but provided
    the pieces that deal with the selection i have problems
    with..
    Can anyone offer any suggestions on where to look or add to
    my code to
    capture that value?
    ASP, SQL2005, DW8 VBScript, Visual Studio 2005, Visual Studio
    2008

    Here is the actual recordset code for that drop down..
    <select name="extra_inscript" id="extra_inscript">
    <option value="" <%If (Not isNull("extra_descrip"))
    Then If (""
    = CStr("extra_descrip")) Then
    Response.Write("selected=""selected""") :
    Response.Write("")%>>Please Select a
    Inscription</option>
    <%
    While (NOT reInscrip.EOF)
    %><option
    value="<%=cStr(reInscrip.Fields.Item("extra_descrip").Value)%>"
    <%If (Not isNull("extra_descrip")) Then If
    (CStr(reInscrip.Fields.Item("extra_descrip").Value) =
    CStr("extra_descrip"))
    Then Response.Write("selected=""selected""") :
    Response.Write("")%>
    ><%=cStr(reInscrip.Fields.Item("extra_descrip").Value)%></option>
    <%
    reInscrip.MoveNext()
    Wend
    If (reInscrip.CursorType > 0) Then
    reInscrip.MoveFirst
    Else
    reInscrip.Requery
    End If
    %>
    </select>
    On the page the drop displays all the items as shown below..
    but no matter
    which on you pick the value never gets passed to the shopping
    cart.. its
    always picking up the first one in the recordset..
    Can anyone offer any suggestions on how to capture the true
    value onchange?
    or select or whatever i can do to get it before the data is
    sent to paypal..
    ASP, SQL2005, DW8 VBScript, Access
    "Daniel" <[email protected]> wrote in message
    news:[email protected]...
    >I have a drop down that is populated from my items
    table..
    >
    > the drop down displays fine and you can pick from any of
    them items..
    > issue im having is that i need that value passed to pay
    pal.. but if i
    > select any of the items and hit the add to cart, the
    value that is being
    > passed is the first one in the list all the time.. (
    actually its not even
    > the first one in the list ) its selecting the 2nd option
    which as seen
    > below woudl be 94 MVP instead of the blank value for the
    Please Select
    >
    > Here is my drop down code:
    > <select name="extra_inscript" id="extra_inscript">
    > <option value="">Please Select </option>
    > <option value="94 MVP">94 MVP</option>
    > <option value="94/95 Champs">94/95
    Champs</option>
    > <option value="HOF 08">HOF 08</option>
    > <option value="94 Finals MVP">94 Finals
    MVP</option>
    > <option value="Top 50">Top 50</option>
    > </select>
    >
    > Here is my paypal code:
    >
    > <form target="paypal"
    action="https://www.paypal.com/cgi-bin/webscr"
    > method="post">
    > <input type="hidden" name="cmd" value="_cart">
    > <input type="hidden" name="add" value="1">
    > <input type="hidden" name="business"
    value=Request.Form("email")>
    > <input type="hidden" name="item_name"
    > value=Request.Form("extra_inscript")>
    > <input type="hidden" name="item_number"
    value=Request.Form("item_num")>
    > <input type="hidden" name="amount"
    value=Request.Form("price")>
    > <input type="hidden" name="currency_code"
    value="USD">
    > </form>
    >
    > I have removed our personal account information from the
    code but provided
    > the pieces that deal with the selection i have problems
    with..
    >
    > Can anyone offer any suggestions on where to look or add
    to my code to
    > capture that value?
    >
    >
    > --
    > ASP, SQL2005, DW8 VBScript, Visual Studio 2005, Visual
    Studio 2008
    >

Maybe you are looking for

  • This application is not compatible with your device and cannot be loaded

    Hi, I have been trying to load an application to my BB 9000 since a monday and getting this error "This application is not compatible with your device and cannot be loaded". As evident, I am new to BlackBerry development and got to port an existing J

  • Imp to Oracle 10.1.0.2.0

    OS: SuSE Linux Enterprise Server 8 I am doing exp/imp from Oracle 7.3.4 to Oracle 10.1.0.2.0. I have exported the dmp file from Oracle 7.3.4 and through FTP I put this file the following directory. $ORACLE_HOME/bin Now When I typed imp from command l

  • Cannot play videos using FireFox, but they work in Safari?

    I am attempting to play some videos from my schools student extranet. The videos play with no problem on Safari, but not on FireFox. Anyone think they can walk me through a solution? I would greatly appreciate any assistance!

  • Problem after Jena Patch

    I have just applied the Jena patch for 11g and I am now having trouble with the BatchLoader. The output from my batch command is: Note: You can use JVM properties -Ddb.user=<user> -Ddb.password=<password> -Ddb.host=<host> -Ddb.sid=<sid> -Ddb.port=<po

  • CS6 Which Preset to Use for Viewing on a Windows 7  Computer

    I'm using CS6 on Windows 7 and have .mts files that are approximately 35-40 minutes each. I need to get these to someone else so they can view them on a Windows 7 machine. The original files are 1440x1080. I thought if I exported them using the AVI p