Esempio n. 1
0
        private void Page_Load(object sender, System.EventArgs e)
        {
            // fill the page's content
            DataView bookmarks = UserGuiHelper.GetBookmarksAsDataView(SessionAdapter.GetUserID());

            rpThreads.DataSource = bookmarks;
            rpThreads.DataBind();

            btnRemoveChecked.Visible = (bookmarks.Count > 0);
        }