}//page_load

    private void poblar_reporte()
    {

        string saveLocation = Server.MapPath("~\\Imagenes\\Imagenes_Autores");
        string url_defecto = Server.MapPath("~\\Imagenes\\");

        try
        {
            //llamamos los metodos para llenar los informes
            L_Reporte_autores operacion = new L_Reporte_autores();
            Data_Reportes reporte = operacion.ObtenerInforme(saveLocation, url_defecto);

            CRS_autores.ReportDocument.SetDataSource(reporte);
            CRV_autores.ReportSource = CRS_autores;

        }
        catch (Exception exc)
        {

            throw exc;
        }

    }//poblar reporte