by Santi Murtagh | Feb 27, 2013 | Software Development Tips & Tricks
Form posts are a thing of the past. Most new interactive HTML5-Web 2.0-buzzword web apps are trending towards a one-page UI with Ajax requests used to pull and push data dynamically. So if you are doing a cool new web app that does not use any form posts, why would...
by Nate Lowry | Feb 6, 2013 | Software Development Tips & Tricks, Software Engineering
I recently had a problem with my controller inconsistently picking up a decimal value in my model. Here’s what the Action looked like: [HttpPost] public ActionResult SaveItem(Item myItem) {…} For simplicity we’ll say this is what Item looked like:...