5

I would like to add membership subscription to an asp.net mvc web site. I would prefer to use an existing library to incorporate membership and subscription functionality. I searched and could not find any libraries or nuget modules.

I would like to use the Braintree framework to create and manage the subscription and the payments, but I found no integration examples.

Barry MSIH
  • 3,525
  • 5
  • 32
  • 53

1 Answers1

1

I work at Braintree. If you have more questions, you can always reach out to our support team.

Braintree has extensive integration examples, and specifically has a guide on implementing recurring billing:

Say you want to start a subscription service that offers a 1 month free trial and then charges $9.99 per month indefinitely (until the Customer chooses to cancel).

Here's how we will do that:

  1. Create a Plan
  2. Create a Customer with a stored payment method
  3. Subscribe the Customer to the Plan
  4. Confirm the Customer subscription
agf
  • 171,228
  • 44
  • 289
  • 238
  • Thank you for the info. I am familiar with the Braintree support documentation. I was looking for examples of how developers manage the integration within the asp.net MVC model. This is more of a question about membership subscription within an MVC application, than a Braintree question. – Barry MSIH Oct 13 '14 at 21:22
  • @BarryMSIH Got it. Our [.Net MVC examples on github](https://github.com/braintree/braintree_dotnet_guide/) are probably the closest you're going to find. – agf Oct 14 '14 at 01:05
  • @agf - GitHub links are broken. – Brett Oct 10 '18 at 19:15
  • @Brett Removed. Unfortunately there isn't really a modern equivalent. – agf Oct 10 '18 at 19:26