public static string ShowCheckImage(string ActiveCode) { string strReturn = ActiveCode == "1" || ActiveCode == "True" ? "check.gif" : "uncheck.gif"; return(GlobalClass.GetUrlAdminImage() + strReturn); }
public static string ShowActiveImage(string ActiveCode) { string strReturn = ActiveCode == "1" || ActiveCode == "True" ? "stop.png" : "start.png"; return(GlobalClass.GetUrlAdminImage() + strReturn); }