private void Page_Load(object sender, System.EventArgs e) { // fill the page's content List <int> accessableForums = SessionAdapter.GetForumsWithActionRight(ActionRights.AccessForum); DataView activeThreads = ThreadGuiHelper.GetActiveThreadsAsDataView(accessableForums, CacheManager.GetSystemData().HoursThresholdForActiveThreads, SessionAdapter.GetForumsWithActionRight(ActionRights.ViewNormalThreadsStartedByOthers), SessionAdapter.GetUserID()); rpThreads.DataSource = activeThreads; rpThreads.DataBind(); }