Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.

like image 617
Wayne Molina Avatar asked Nov 11 '09 15:11

Wayne Molina


People also ask

Does ASP NET core include MVC?

Routing. ASP.NET Core MVC is built on top of ASP.NET Core's routing, a powerful URL-mapping component that lets you build applications that have comprehensible and searchable URLs.

Is .NET core the same as MVC?

The major difference in the project structure is that Asp.Net Core projects do not contain any web. config file like Asp.Net MVC projects. So, then question arise that however, the applying deals with completely different configuration settings like authentication or application low-level formatting specific code etc.

Is ASP NET MVC free?

ASP.NET is a free web framework for building websites and web applications on . NET Framework using HTML, CSS, and JavaScript. ASP.NET MVC 5 is a web framework based on Model-View-Controller (MVC) architecture.


1 Answers

Website Spark (Microsoft partner program) just put out Freemium 1.0 which might be a good starting point. I haven't yet played with it, just saw the ad in my inbox today.

http://code.msdn.microsoft.com/WATFreemium

Paul

like image 137
Paul Avatar answered Oct 20 '22 09:10

Paul