Creating a subscription based website in ASP.NET

Posted by DotnetDude on Stack Overflow See other posts from Stack Overflow or by DotnetDude
Published on 2010-04-12T13:51:38Z Indexed on 2010/04/12 13:53 UTC
Read the original article Hit count: 348

Filed under:
|
|
|

I'd like to update my website to make it subscription based. It's a ASP.NET Web forms project. I am looking for the following functionality:

  1. Ability to have users sign up for different plans (Gold, Premium etc)
  2. Ability to have users upgrade / downgrade to and from plans
  3. Ability to hook this up to a Payment processor
  4. Ability to have a credit based system (User buys x credits for $y) as an alternative to plans in (1)

Most of this functionality (if not all) is supported by a large number of websites which makes me think I can leverage on an existing framework instead of re-inventing the wheel.

Any thoughts?

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about .NET