I'm not even sure how to properly frame (or title) this question, so apologies in advance.
I'm looking for a "starter kit" for a super basic ASP.NET website that is data driven via SQL Server.
Background: I find myself recreating the simple structure where there is a database, then I make a form to put data into it or update records and then display the data on a page. I believe this is referred to as a CRUD application (Create Read? Update Delete).
It seems that it would be smarter for me to not keep rebuilding this functionality from scratch each time I need it and I imagine there is a "starter kit" or code sample or open source resource that has this basic framework in place.
To be more specific, the website that I'm trying to create is a super dumbed-down verison of netflix. Where there are records that have a title and an image. And there is a form to add or update or delete records. (There is no requirement for nice streaming video or for sophisticated user account management for my project.)
This website does not need to scale, doesn't needed to be cleanly coded, or anything like that. It's not entirely throw-away, but the main requirement is just that it works and I can get it up and running relatively quickly without spending a ton of time on the basic plumbing, again.
I've found some samples (on http://asp.net for example), but these seem to be geared towards illustrating special techniques or topics. What I'm looking for is the most absolute barebones simplistic CRUD setup possible, minus and frills.
If anyone could point me in the right direction or help me put a name to what I'm describing, that'd be much appreciated.
Thanks!