示例#1
0
        public static string ShowCheckImage(string ActiveCode)
        {
            string strReturn = ActiveCode == "1" || ActiveCode == "True" ? "hot.png" : "normal.png";

            return(GlobalClass.GetUrlAdminImage() + strReturn);
        }
示例#2
0
        public static string ShowActiveImage(string ActiveCode)
        {
            string strReturn = ActiveCode == "1" || ActiveCode == "True" ? "show.png" : "hide.png";

            return(GlobalClass.GetUrlAdminImage() + strReturn);
        }