how to call above dictionary values in source code for bind

Jun 7 2014 2:51 AM
 I have 3 lists like Name,Education,Address.
I add my list values to dictionary like below... 
 
Dictionary<string, List<object>> dic = new Dictionary<string, List<object>>();
dic.Add("Name", obj.Name);
dic.Add("Education", obj.Education);
dic.Add("Address", obj.Address); 
 
Accordion1.DataSource = dic;
Accordion1.DataBind();
 
how to call above dictionary values in source code for binding accordion with dictionary values.

Answers (1)