public string contador(decimal s) { Examen ex = new Examen(); decimal seg = s; string segundos = "00"; string minutos = "00"; if (seg <= 59) { segundos = Convert.ToString(seg); segundos = ex.agregaCero(segundos); } else if (seg > 59) { segundos = Convert.ToString(seg % 60); segundos = ex.agregaCero(segundos); minutos = Convert.ToString(Math.Floor(seg / 60)); } seg--; HttpContext.Current.Session["tiempo"] = seg; String res = minutos + ":" + segundos; return(res); }