Posted on: 4/9/2015 2:11:35 PM | Views : 590

Hii,everyone
Can anybody tell me how to access list under ajax call. list coming from control action method and the action method is below given:
[HttpPost]         public ActionResult ShowToday(Timer timer)         {             if(timer.date!=null)             {                 string date=timer.date;                 List<Timer> lsttime = DataStoringOperations.GetData(date);  // Hear i am getting list                 if(lsttime.Count>0)               ...

Go to the complete details ...