I've build a linq query.But i want a random selection so its not always ID : 1,2,3,4,5,6 How can i randomize this var? I like to bind it to a repeater.
//TagCloud: Random rand = new Random(); var tc1 = from i in JumpTide.cms.menu.GetMenuItems(32) select new { ID = i.ID, PageID = i.PageID.Value, Name = i.Name, PageName = JumpTide.cms.paginas.GetPages(i.ID, 1).FirstOrDefault().tblContent.header  
View Complete Post