protected void Page_Load(object sender, EventArgs e)
        {
            Coneccion a = new Coneccion();

            string Usuario = Request.QueryString["Cuenta"];


            string equipos = a.getRankingU(Usuario);

            string[] equipo = equipos.Split(';');

            for (int i = 0; i < equipo.Length - 1; i++)
            {
                string[] b = equipo[i].Split(',');

                ListaE += "<tr><td>" + b[0] + "</td><td>" + b[1] + "</td><td>" + b[2] + "</td></tr>\n ";
            }
        }