Are there any ASP.NET MVC subscription-based starter kits or examples?

Posted by Wayne M on Stack Overflow See other posts from Stack Overflow or by Wayne M
Published on 2009-11-11T15:53:22Z Indexed on 2010/03/13 0:57 UTC
Read the original article Hit count: 343

Filed under:
|
|

Basically something that handles the low-level "plumbing" code for a subscription-based service. I see a lot of things dealing with basic membership, but nothing that handles the subscription aspect (recurring billing, automated jobs for setting up billing, notification for billing, etc). This might be the one thing that keeps me from using ASP.NET MVC for my SaaS idea, since it would take a fair amount of development time to write my own; if I go with my other option, Ruby on Rails, I can buy a kit that does all of this for $250. I haven't found anything even remotely close to this for .NET - all of the SaaS sample apps I've seen are more like StackOverflow et all where you have one site that multiple people log on to, not the web application model where you have subscribers who are billed monthly, each of whom has users and other entities (e.g. Customers, Tasks, etc) for their own site.

Is there anything similar for ASP.NET, or some kind of guidelines for writing my own if I have to, so I don't waste too much time? As a startup that means that I'm doing all the coding myself.

I've found this, but it seems to only be for billing and didn't seem to have much (any?) documentation on exactly how to set it up.

© Stack Overflow or respective owner

Related posts about asp.net-mvc

Related posts about saas