//BUSCADOR DE RECOMENDACIONES
        private void txtBuscadorRecomendacion_TextChanged(object sender, EventArgs e)
        {
            if (txtBuscadorRecomendacion.Text != "")
            {
                using (webservices3435.WSPHP wsPHP = new webservices3435.WSPHP())
                {
                    DataTable dt = new DataTable();

                    try
                    {
                        dt = (DataTable)JsonConvert.DeserializeObject(wsPHP.buscarRecomendaciones(txtBuscadorRecomendacion.Text), typeof(DataTable));
                        dgvRecomendacion.DataSource = dt;
                        NombresColumnas();
                    }
                    catch (Exception)
                    {
                        MessageBox.Show("No se encuentra ninguna recomendacion con estos datos, Por favor ingrese un nombre o ID Material correcto", "No existe esta recomendacion", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                        cargarDatosTabla();
                    }
                }
            }
            else
            {
                cargarDatosTabla();
            }
        }