Exemple #1
0
 /// <summary>
 /// Binds the articles to the list in link selection div.
 /// </summary>
 protected void BindArticles()
 {
     try
     {
         rptDocusList.DataSource = DocoManager.GetAllArticles();
         rptDocusList.DataBind();
     }
     catch (Exception ex)
     {
         //Log - unable to bind articles list.
         throw ex;
     }
 }