Buy Now Button Control for ASP.NET Web Form

This page explains the usage and facts about the BuyNow button Web Form Server Control. If you intend to use BuyNow button within your ASP.NET MVC project, please visit this page. Buy Now buttons are suitable for single-item payments or purchases. A single Buy Now button can sell one or more copies of the same item.. - If you want to upload a single item to PayPal hosted shopping cart, use the Add To Cart Button. - If you want to upload a set of items or transfer your own shopping cart items to PayPal hosted shopping cart, use Upload Complete Cart Button.Anyway, you are just few steps away from collecting money from your customers using a Buy Now Button. If you are evaluating a Trial Version of this control OR if you want to test with Demo Money, please prepare your Sand Box account before proceeding to this chapter .

In order to keep this page short and simple, the examples are given only in C# language. If you are a VB.NET programmer, please accept our apology. The example snippets are so short and comprehensive that as a programmer you wont have any problem to comprehend.

- The Checkout Experience
- Getting Started
- Set Properties Programmatically
- Click Event and Post Back
- Handling Instant Payment Notification (IPN)
- Handling PayPal Return / PDT

Getting Started:

  1. Drag and drop an instance of the Buy Now Button control from your Visual Studio Toolbox as shown below:

    buy Now Mode

  2. The first property of this control that you need to set is your Business Email Address or Merchant ID of your Merchant Account. If you are testing in Sand Box, then, this is the account which you created as 'Test Merchant Account' as explained in the Sand Box preparation chapter. Please do not get confused with the Developer Central Login account with the Test Merchant Account. Merchant ID is an alternative to using your Email address. It is better not to expose your business email address in order to protect your Email In-box from Spams. You can set either Business Email or Merchant ID from the Smart Tag or from the Property Editor. In order to get your Merchant ID, log in to your PayPal account. If you are testing in SandBox, then, log in to your Developer Central Account, then log in to your Merchant Test Account from https://www.sandbox.paypal.com. Click 'Profile' Menu, then, your Merchant ID will be shown up as shown in the following screen shot.


    Merchant ID

    Set the merchant ID as shown here:
    set Merchant Id

  3. Now you may want to set few more properties like Amount, ItemName, ItemNumber etc and you can do all of these using the Wizard for the button which can be called by clicking the link found in the Smart Tag as shown in the following Screen Shot. If you leave the Amount field empty, then, your customer will be able to enter any amount he/she wants to pay in PayPal website. Obviously that scenario is not very practical. If you leave ItemName field empty, then, your customer will be able to enter any text for the Item Name. That scenario is not even practical as you may need to set this field to track the transaction in IPN_Notified event.

    buy Now Wizard Step 1

  4. Furthermore, you may choose to set the visual styles and PayPal page behaviors for the buy now button. Just click the button "Next" shown in the wizard and you will be taken to configure the display page as shown in the following screen shot.


    buy Now Wizard Step 2

  • Please note: If your account is not upgraded to a Premier or Business account, then, you will not see any affect of these styling properties for PayPal page. For example, if you set a header image URL, you will not see that image when you are taken to PayPal website due to a click on the Buy Now button. In that case, you will see your email address as the header of the page.

  • If you want to pass unlimited custom data that you want to track in a Post Payment event like IPN_Notified, PayPal_Returned, then, please check the feature chapter about Additional Data Items.

Setting Properties Programmatically using the Rich set of API. Top

set Amount Run Mode

Click Event and Post Back:Top

You may want to set the properties of your Buy Now Button after the customer has clicked the Button for purchasing an item. For example, in your web form, you may have a text box asking your customer how may copies of the item he/she wants to buy. So, if the button is clicked, you can calculate the final price and then send the information to PayPal. In order to do that, this control has an event named "Click". It is similar to any standard ASP.NET button control's Click Event as shown in the following figure:

buy Now Click Event

If you attach an event handler to this event, then the event handler method will be executed before the data is transferred to PayPal.

If your textbox for quantity information has ID = txtQuantity and if you want to set price for a single item = US$ 34.78, then following snippet (C#.Net) shows how to perform calculation within Click Event Handler:

click Event Handled Method

  • You can use Validation logic inside the Click Event handler of a 'Buy Now' button and based on a condition (user input) you can cancel the submission to PayPal. Please check the method CancelSubmission().

  • The Buy Now Button will POST BACK only IF the Click event is handled. If you do not handle Click event, your customer will be taken to PayPal website directly from the Client Side without any Server Round Trip.

Handling Instant Payment Notification (IPN) from PayPal:Top

When your customer Clicks the final 'Pay Now' button in the PayPal website, PayPal sends notification to your website asynchronously which is called Instant Payment Notification (IPN).

pay Now Page

This control can capture that notification and fire a server side event named IPN_Notified. This control not only just fires the event, but also collects all the transaction data from IPN and offers you a rich set of strongly typed relational object model as event argument object which is not only loved by all Object Oriented Programmers, but also revealing all the headaches from the developer about verification and other complex tasks in IPN Session.

ipn Event

ipn Handler Demo

  • Click Here to view the complete Class Diagram of BuyNowIPNEventArgs object.

  • By the way, the above example snippet does not show the detailed way of handling FRAUD attempts in order to simplify the overview of IPN_Notified event. So, you should check the pattern for payment verification, fraud detection and automated Product delivery.

  • If you do not want to handle IPN_Notified event from the same page, rather if you want to handle IPN_Notified event from a dedicated page, you can do that too. Simply do not handle IPN_Notified event and set the Custom Notification URL from the Design Time Smart Tag Wizard -> Step 3 as shown here:


    set Custom IPN

  • If you use a Custom IPN URL to capture the IPN from a dedicated page, you can still get the benefit of firing IPN_Notified event and capture all IPN data from event argument object from that dedicated page. How ? Please check the chapter for IPNHandler Component.
  • If you handle IPN_Notified event, then, setting Custom Notification URL will have NO EFFECT. The control will always generate notify URL automatically to use the same page where the Buy Now button is hosted so that the same Buy Now button can fire IPN_Notified event.

  • If you do not handle IPN_Notified event and if you do not set any Custom Notification URL then, this control will not capture IPN at all. If you have specified any default IPN URL in your PayPal profile, then, PayPal will use that URL to send IPN for any transaction happens in your PayPal account in that case.

  • You should handle IPN_Exception event if you want to capture any Exception thrown in your IPN_Notified event handler method. By handling IPN_Exception event, you not only catch any exception that was fired beyond your IPN_Notified handler layer, but also you get rid of using TRY - CATCH block in your IPN_Notified handler which will enhances the readability of your code.

    ipn Exception

  • You do not need to turn IPN option ON from your PayPal account at all. This control will take care of everything for you.

Programming "Thank You" Page:Top

Whenever your customer is transferred back to your website from PayPal website after completing or canceling a payment (pursuant to submission of your Buy Now button), you can execute post payment business logic on your website by handling an event named PayPal_Returned. This control not only just fires the event, but also collects all the transaction data from PayPal if you have turned 'Payment Data Transfer' option ON from your PayPal profile. The event argument object of PayPal_Returned event offers you a rich set of strongly typed relational object model same like the event argument object of IPN_Notified event. This event will take care of notification validation so you just do not need to worry about any dirty code work, rather use the clean data returned by this event argument object.

Pay Pal_ Returned Event

Once you handled PayPal_Returned event of your Buy Now button, your buyer will be taken back to your website after the payment is completed or canceled. You can check from your Event handler if the payment was proceeded or canceled as shown below:


buy Now PPReturn Simple

  • If you do not handle PayPal_Returned event, then, your buyer will not be returned to your website by PayPal. So, you should handle this event if you want to bring your buyer back to your site.

  • If you want to redirect your customer to a different page after returning from PayPal, you can do so by setting the Custom Completed Return URL and Custom Canceled Return URL from the Step 4 tab of the Buy Now button Design Time Wizard as shown here:

    pp Rtrn Event Step 2

    Notice the check box in the above screen shot. If you check this box, then, the Canceled Return URL will be auto generated so that you can handle both of the Completed and Canceled Return event from the same page. It is HIGHLY RECOMMENDED that you check this option.

  • If you prefer to use Custom Return URL as mentioned above, you can still fire PayPal_Returned event and collect the information about completed/canceled from your dedicated return page. How ? please check the chapter for PayPalReturnHandler Component.

  • If you handle PayPal_Returned event, then, setting Custom Complete Return URL and Custom Canceled Return URL will have NO EFFECT. So, if you want to redirect the buyer to a dedicated page after PayPal return, then, make sure that you do not handle PayPal_Returned event and then, set the Custom Complete Return URL / Custom Canceled Return URL.
  • If you want to receive all the transaction data in PayPal_Returned event as you could in IPN_Notified event from BuyNowReturnedEventArgs, then, you need to turn 'Payment Data Transfer (PDT)' option On from your PayPal account. Once you turn PDT ON for your PayPal account, you will receive an Authentication Token which is called 'PDT Authentication Token'.

    Once you get the PDT Authentication Token, from the design time smart tag, click Button Wizard and select the last tab "Step 4 (Payment Return / PDT)". In that tab, at the bottom of the Form, you will find the box for PDT Authentication Token. Set the PDT Authentication Token in that box as shown here:


    set PDTToken


    After PDT Authentication Token is set, you can collect transaction data from the PayPal_Returned event argument object BuyNowReturnedEventArgs.


    pdt Demo

  • Click Here to view the complete Class Diagram of BuyNowReturnedEventArgs object

  • You do not need to enable PDT if you just need to collect Transaction ID from PayPal_Returned event. e.TransactionID is available even though if you do not set PDT Authentication token.

activity_trans

The Checkout Experience Top

The checkout experience with a Buy Now button


So, PayPal_Returned event is fired after IPN_Notified event, is that right ?Answer : Not strictly but usually. What does it mean ? Ok, as I said, IPN is submitted to your website by PayPal Notification Service. It actually queues the notification task to it's Queue and depending on the tasks the notification service already has, the time when 'IPN_Notified event fire' varies. For the PayPal live site, the notification service task queue is not usually long but the task queue for PayPal Sand box is usually very long. So, when testing in Sand box, most of the time, you will find that your customer is already back to your website (PayPal_Returned event fired) before IPN_Notified event is fired. But, when you are testing in PayPal live site

Last updated on Nov 1, 2014