Wednesday, January 22, 2014

Pass Complex JavaScript Object to MVC Controller

In this tutorial I'm going to illustrate how we can pass complex javascript objects to MVC controller. I have two Model objects called Project and Employee as below. public class Project { public long ProjectID { get; set; } public string ProjectName { get; set; } } ...