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



            string equipos = a.getRanking();

            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 ";
            }
        }