One of the things in mvc3 that recently caught my eyes is built in json model binding support which I have recently used in my project and want to write about it today. JsonValueProviderFactory Class which do all the stuff regarding json model binding is now built-in in mvc 3 which was not in mvc2. To use it in mvc2 you have to register the JsonValueProviderFactory class in global.asax after referencing Microsoft.Web.Mvc from Mvc Futures Library . Here how the thing goes in mvc3 Model Class public class Category { public string CategoryName { get; set; } } The Controller public ActionResult Create() { return View(); } [HttpPost] public ActionResult Create(Category category ) { string Cat = category.CategoryName; var data = new { message = "ok" }; return Json(data); } The View $(document).ready(function () { $('#save').click(function () { var CategoryName = { CategoryName: $('#CategoryName...
I am working mainly on Net technologies and very passionate about learning and implementing new things.