Html.RatingFor: Extending the MVC HtmlHelper
When working on a web application, I was in the need to add a rating for a product. That rating will be between 1 and 5 and will be always an int. So my model has […]
pollirrata.com
When working on a web application, I was in the need to add a rating for a product. That rating will be between 1 and 5 and will be always an int. So my model has […]
When trying to create a sandbox project using WebAPI (on MVC4), I was struggling with a weird problem: My data wasn’t being received in the server. I had the following jQuery call $.post(“api/Values”, {value1:1, value2:2}, function(result){ […]
Having an application in multiple languages is now a requirement in many projects. In ASP.net, you can tell your application that the language that should be using corresponds to the one the browser is specifying. While […]
It can be because you want to implement I18N without the use of resources, or your model classes are outside of your MVC project, or any other reason you have that make you want not being […]
This post is based on Robert Conner’s code forCakePHP 1.x., and I made some changes to get it to work onCakePHP 2.x . The original post can be found here. Maybe some people have faced problems […]