Hi - I need to programatically get a list of group categories and then list all the groups in each category.
I need something like:
List<Categories> cList = GetCategories();
foreach(Category c in cList){
//Display the category name somewhere//Now get the groups in the category
List<Group> gList = GetGroupsByCategoryID(c.ID);
foreach(Group g in gList){
//now display all the groups in this category
}
That code is obviously made up but I want something like that..
Any ideas?
Copyright© 2008 Telligent Systems Inc. All rights reserved CommunityServer.com • Telligent.com