public static string SearchMenuData(int menuID) { string tblaccess = ""; try { BLL_Infra_MenuManagement obj = new BLL_Infra_MenuManagement(); DataTable dt = obj.Get_AccessRightAll(menuID); if (dt != null) { if (dt.Rows.Count > 0) { tblaccess = dt.Rows[0]["Remarks"].ToString(); } } } catch (Exception ex) { UDFLib.WriteExceptionLog(ex); } return(tblaccess); }