public class Plans
{
public long PlanID { get; set; }
public long? CompanyID { get; set; }
public string PlanType { get; set; }
public string PlanName { get; set; }
public bool? IsActive { get; set; }
public int? CreatedBy { get; set; }
public DateTime? CreatedDate { get; set; }
public int? CheckedBy { get; set; }
}
var date = [{
0:
BusinessType: "null"
CheckedBy: null
CheckedDate: null
CompanyID: null
CompanyName: "Swastik"
CreatedBy: null
CreatedDate: "/Date(1587383258707)/"
}];
Added Controller Method and ajax call from view for better assistance.Unable to find the way to do it. I am not able to find out how to extract date from above json string retrieved in jquery. Kindly assist me in that. Added my model class above that I am using. I am simply getting data by calling a procedure and rendering the data from controller to view using ajax call and populating the ajax call sucess data in controls.