protected void GetMenuList() { AppMenuBLL appMenu = new AppMenuBLL(); try { DataTable dt = appMenu.GetMenuList(); menuListGridView.DataSource = dt; menuListGridView.DataBind(); if (menuListGridView.Rows.Count > 0) { menuListGridView.UseAccessibleHeader = true; menuListGridView.HeaderRow.TableSection = TableRowSection.TableHeader; } if (dt.Rows.Count < 1) { msgbox.Visible = true; msgTitleLabel.Text = "Data Not Found!!!"; msgDetailLabel.Text = ""; } } catch (Exception ex) { msgbox.Visible = true; msgTitleLabel.Text = "Exception!!!"; msgDetailLabel.Text = ex.Message; } finally { appMenu = null; } }