public static string ShowCheckImage(string ActiveCode) { string strReturn = ActiveCode == "1" || ActiveCode == "True" ? "hot.png" : "normal.png"; return(GlobalClass.GetUrlAdminImage() + strReturn); }
public static string ShowActiveImage(string ActiveCode) { string strReturn = ActiveCode == "1" || ActiveCode == "True" ? "show.png" : "hide.png"; return(GlobalClass.GetUrlAdminImage() + strReturn); }