public static string GetDictItemText(string strItemCode) { if (strItemCode.Length >= 1) { EntityData dictionaryItemByCode = SystemManageDAO.GetDictionaryItemByCode(strItemCode); if (dictionaryItemByCode.HasRecord()) { return(dictionaryItemByCode.GetString("Name")); } } return(""); }