Exemple #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            string Usuario = Request.QueryString["Cuenta"];

            Coneccion a = new Coneccion();

            string players = a.getGoleadores();

            string[] jugadores = players.Split(';');

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

                ListaJ += "<tr><td><a href=\"DetalleJ.aspx?Cuenta=" + Usuario + "&codigo=+" + b[0] + "\">" + b[1] + "</a></td><td>" + b[2] + "</td><td>" + b[3] + "</td></tr>\n ";
            }
        }