ASP.NET MVC
//
brent
//
June 26, 2012
//
This will be a very quick/simple post.
Maybe this is very clear to most people when they start out developing with ASP.NET MVC but it was not right away with me…
When you are using 2-way model binding in MVC to bind your model to your view and back again, you MUST use properties with getters/setters, not fields.
//Will NOT bind ok public class BindingModel {
int ID;
string FirstNam…
Read more »
ASP.NET MVC
//
brent
//
February 12, 2012
//
I recently had a client who wanted to setup an online store, they had several hundred products to list, and wanted to have something up as quickly as possible. I had read quite a lot of good reviews about nopCommerce, an open source .NET shopping cart product built with MVC. I decided to give it a shot, to see if it could meet our needs, and it absolutely did. I love this…
Read more »