private void cargar_DropDownList_ENTIDAD_EPS()
    {
        DropDownList_ENTIDAD_EPS.Items.Clear();

        eps _eps = new eps(Session["idEmpresa"].ToString(), Session["USU_LOG"].ToString());
        DataTable tablaRegionales = _eps.ObtenerTodasLasEPS();

        ListItem item = new ListItem("Seleccione...", "");
        DropDownList_ENTIDAD_EPS.Items.Add(item);

        foreach (DataRow fila in tablaRegionales.Rows)
        {
            item = new ListItem(fila["NOM_ENTIDAD"].ToString(), fila["ID_EPS"].ToString());
            DropDownList_ENTIDAD_EPS.Items.Add(item);
        }

        DropDownList_ENTIDAD_EPS.DataBind();
        DropDownList_ENTIDAD_EPS.Enabled = true;
    }