twal
twal

Reputation: 7039

PayPal API with ASP.NET MVC

Is it the paypal API compatible with asp.net MVC? Does anyone know of any expamples of how to implement it? Thank you.

Upvotes: 12

Views: 17891

Answers (4)

Joisys
Joisys

Reputation: 96

Source: Paypal add to cart multiple items form with discount

I have successfully integrated the PayPal express checkout with shopping cart in to one of my Asp.net MVC projects with discount codes, shipping charges etc.

Upvotes: 5

Mohamed Azlan
Mohamed Azlan

Reputation: 41

Take a look at this site. http://www.arunrana.net/2012/01/paypal-integration-in-mvc3-and-razor.html
It is specifically designed for MVC3 with Razor!

Upvotes: 3

Jeroen
Jeroen

Reputation: 837

Recently I implemented a PayPal 'Buy Now' button in a ASP.NET MVC Razor view. In the end the button is just a HTML form that is posted to the PayPal website. However, it took me some time to find out which hidden form fields were required, and which optional fields I could also use to further configure the payment process. I have published my experiences on my blog: http://buildingwebapps.blogspot.com/2012/01/single-item-paypal-buttons-and.html. There you will also find the source code for an MVC Html helper method that makes rendering single-item PayPal buttons less work.

Upvotes: 6

Lorenzo
Lorenzo

Reputation: 29427

yes it is compatible.

Have a look at MVC Storefront Starter Kit videos.

Episode 22 is dedicated to Paypal

Upvotes: 20

Related Questions