I’m learning ASP.NET (slowly), trying to avoid WebForms entirely, but I’m finding MVC, ORMs, EF, and all the rest a little bit overwhelming. I am quite solid with HTML, HTTP, CSS, C# and the BCL.
I have a tiny bit of experience with PHP (ewww), but I’ve found it to have the deployment and convenience advantages for super small tasks.
I’d like to get a “quick start” where I can just one file in which I can manually connect to the database, run some sql and then loop over the result it to produce some HTML. Small amounts of Visual Studio magic are acceptable. 😉
Is there some sort of microframework or “basic project template” I’ve been missing?
This is similar to this question about doing the same thing with ruby.
If you want to avoid WebForms all together, then you can use a Handler.
I can understand why you’d want to do this while your learning but remember WebForms are definately not the enemy.