Example #1
0
 private void ShowNotificationList()
 {
     try
     {
         NotificationBiz biz = new NotificationBiz();
         rptNotification.DataSource = biz.GetNotificationList(HttpContext.Current.User.Identity.Name);
         rptNotification.DataBind();
     }
     catch
     {
         throw;
     }
 }