protected void grv_autores_SelectedIndexChanged(object sender, EventArgs e)
        {
            GridViewRow row    = grv_autores.SelectedRow;
            String      codigo = Convert.ToString(row.Cells[0].Text);

            LibroBusiness libroBusiness =
                new LibroBusiness(WebConfigurationManager.ConnectionStrings["LibreriaCeibaBD"].ConnectionString);
            LinkedList <Autor> autores = libroBusiness.getAutoresPorLibro(Int32.Parse(codigo));

            gv_autor.DataSource = autores;
            gv_autor.DataBind();
        }