private void cargar_DropDownList_CONT_NOMBRE()
    {
        DropDownList_CONT_NOMBRE.Items.Clear();

        tools             _tools = new tools();
        SecureQueryString QueryStringSeguro;

        QueryStringSeguro = new SecureQueryString(_tools.byteParaQueryStringSeguro(), Request["data"]);

        Decimal ID_EMPRESA = Convert.ToDecimal(QueryStringSeguro["reg"]);

        contactos _contactos     = new contactos(Session["idEmpresa"].ToString());
        DataTable tablaContactos = _contactos.ObtenerContactosPorIdEmpresa(ID_EMPRESA, tabla.proceso.ContactoSeleccion);

        ListItem item = new ListItem("Ninguno", "");

        DropDownList_CONT_NOMBRE.Items.Add(item);

        foreach (DataRow fila in tablaContactos.Rows)
        {
            item = new ListItem(fila["CONT_NOM"].ToString(), fila["REGISTRO"].ToString());
            DropDownList_CONT_NOMBRE.Items.Add(item);
        }

        DropDownList_CONT_NOMBRE.DataBind();
    }
    private void cargar_DropDownList_CONTACTO_CONTRATACION()
    {
        DropDownList_CONTACTO_CONTRATACION.Items.Clear();

        System.Web.UI.WebControls.ListItem item = new System.Web.UI.WebControls.ListItem("Seleccione...", "");
        DropDownList_CONTACTO_CONTRATACION.Items.Add(item);

        Decimal ID_EMPRESA = Convert.ToDecimal(HiddenField_ID_EMPRESA.Value);

        contactos _contactos = new contactos(Session["idEmpresa"].ToString());

        tabla.proceso pr = tabla.proceso.ContactoContratacion;
        DataTable     tablaContactosOriginal = _contactos.ObtenerContactosPorIdEmpresa(ID_EMPRESA, pr);

        foreach (DataRow fila in tablaContactosOriginal.Rows)
        {
            item = new System.Web.UI.WebControls.ListItem(fila["CONT_NOM"].ToString(), fila["REGISTRO"].ToString());
            DropDownList_CONTACTO_CONTRATACION.Items.Add(item);
        }

        DropDownList_CONTACTO_CONTRATACION.DataBind();
    }