protected void grvResultadoPopup_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { DropDownList ddl = e.Row.FindControl("cboEmpleadoServ") as DropDownList; if (ddl != null) { Utilidades.CargaCombo(ref ddl, AtencionPeluqueriaBuss.GetEmpleados(), "idEmpleado", "nombres", true); } } }