Click here to Skip to main content
15,892,537 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi friends,

I have defined the array list using c#. In that array list i have defined two lists.
I have to use the two lists in the index page. How can i able to that.

Code:

ArrayList list = new ArrayList();
list.Add(list1);
list.Add(list2);

I have to use the list1 and list2 in ajax success function.
I am getting the length of the list. But how can i get the
lists(list1 and list2)

Regards,
Srinivas
Posted

1 solution

If you're using AJAX, you should return a JsonResult from your controller action method:

http://msdn.microsoft.com/en-us/library/system.web.mvc.jsonresult%28v=vs.108%29.aspx[^]

Assign your Array to the Data property of the JsonResult:

C#
var result = new JsonResult { Data = list }

return result;
 
Share this answer
 
Comments
SrinivasNaidu 16-Nov-12 6:54am    
Thank you jim lahey
jim lahey 16-Nov-12 6:57am    
No problem Member 8893505

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900