Ceci est une page optimisée pour les mobiles. Cliquez sur ce texte pour afficher la vraie page.

S'authentifier avec login et mot de passe sur site sécurisé

  • Initiateur de la discussion Initiateur de la discussion Kracter56
  • Date de début Date de début

Boostez vos compétences Excel avec notre communauté !

Rejoignez Excel Downloads, le rendez-vous des passionnés où l'entraide fait la force. Apprenez, échangez, progressez – et tout ça gratuitement ! 👉 Inscrivez-vous maintenant !

Kracter56

XLDnaute Nouveau
Bonjour,
Je dois programmer en vba une macro qui m’ouvre une page web
et qui m’authentifie sur un site pour pouvoir importer des données
à traiter sous excel.

En fait , j'ai 4 champs à renseigner :
- Indicatif
- N° de compte
- Mot de passe
Le sîte est : https://particuliers.secure.lcl.fr/index.html


Voici un début de réponse que j'ai trouvé sur la toile et que j'ai essayé
d'adapter à mon code, mais je n'ai pas réussi, je ne connais pas le langage
HTML.

Sub NavigateTrough_URL()
'Aciver la référence Microsoft Internet Controls
Dim sUrl$
Dim IE As Object
Dim login$, password$, key$

Indicatif = "Indicatif"
Account_number = "N° de compte"
PersonalCode = "Code personnel"
sUrl = " https://particuliers.secure.lcl.fr/index.html "

Set IE = CreateObject("InternetExplorer.Application")

With IE
.Visible = True 'Mettre à False pour ne pas afficher la
fenêtre.
.Silent = True 'Evite les messages d'IE
.Navigate sUrl

'Attend que la page soit chargé
Do Until IE.ReadyState = 4
DoEvents
Loop

'Renseigne les différents formulaire de la page
.document.all("Indicatif").Value = Indicatif
.document.all("N° de compte").Value = Account_number
.document.all("Code personnel").Value = PersonalCode

'Simule le click sur le bouton Valider
.document.all("valid").Click

'Attend que la page soit chargée
Do Until IE.ReadyState = 4
DoEvents
Loop


'.Quit:Set IE '> Pour fermer Internet Explorer
End With
End Sub

Merci beaucoup pour votre aide.

Cordialement,
 
Re : S'authentifier avec login et mot de passe sur site sécurisé

Bonjour Kracter56 🙂,
En principe, le but de l'https est de sécuriser, or pouvoir balancer en série des mots de passe jusqu'à trouver le bon ne me parrait pas acceptable sur un site bancaire, donc je ne pense pas qu'il acceptera ne serait-ce qu'une connexion via VBA 😛.
La partie du code du site qui le concerne parrait être la dedans
Code:
[COLOR=#008000]<!--Zone d'identification-->[/COLOR]
[COLOR=#008000]<!--Begin Closure-->[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]table[/COLOR][COLOR=#ff0000]border[/COLOR][COLOR=#0000ff]="0" [/COLOR][COLOR=#ff0000]cellpadding[/COLOR][COLOR=#0000ff]="0" [/COLOR][COLOR=#ff0000]cellspacing[/COLOR][COLOR=#0000ff]="0" [/COLOR][COLOR=#ff0000]width[/COLOR][COLOR=#0000ff]="279">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]tbody[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]tr[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#ff0000]rowspan[/COLOR][COLOR=#0000ff]="3" [/COLOR][COLOR=#ff0000]valign[/COLOR][COLOR=#0000ff]="top" [/COLOR][COLOR=#ff0000]width[/COLOR][COLOR=#0000ff]="11">[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#ff0000]colspan[/COLOR][COLOR=#0000ff]="2" [/COLOR][COLOR=#ff0000]height[/COLOR][COLOR=#0000ff]="11">[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]tr[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]tr[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#ff0000]align[/COLOR][COLOR=#0000ff]="left" [/COLOR][COLOR=#ff0000]bgcolor[/COLOR][COLOR=#0000ff]="#2c72c9" [/COLOR][COLOR=#ff0000]valign[/COLOR][COLOR=#0000ff]="top" [/COLOR][COLOR=#ff0000]width[/COLOR][COLOR=#0000ff]="9">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]img[/COLOR][COLOR=#ff0000]alt[/COLOR][COLOR=#0000ff]="" [/COLOR][COLOR=#ff0000]src[/COLOR][COLOR=#0000ff]="../v_1.0/img/visu_nav_login_corner_top2.gif" [/COLOR][COLOR=#ff0000]height[/COLOR][COLOR=#0000ff]="10" [/COLOR][COLOR=#ff0000]width[/COLOR][COLOR=#0000ff]="9"/>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#ff0000]align[/COLOR][COLOR=#0000ff]="left" [/COLOR][COLOR=#ff0000]bgcolor[/COLOR][COLOR=#0000ff]="#2c72c9" [/COLOR][COLOR=#ff0000]height[/COLOR][COLOR=#0000ff]="52" [/COLOR][COLOR=#ff0000]valign[/COLOR][COLOR=#0000ff]="top" [/COLOR][COLOR=#ff0000]width[/COLOR][COLOR=#0000ff]="259">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]div[/COLOR][COLOR=#ff0000]style[/COLOR][COLOR=#0000ff]="visibility: visible;" [/COLOR][COLOR=#ff0000]id[/COLOR][COLOR=#0000ff]="affichage">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]table[/COLOR][COLOR=#ff0000]border[/COLOR][COLOR=#0000ff]="0" [/COLOR][COLOR=#ff0000]cellpadding[/COLOR][COLOR=#0000ff]="0" [/COLOR][COLOR=#ff0000]cellspacing[/COLOR][COLOR=#0000ff]="0" [/COLOR][COLOR=#ff0000]width[/COLOR][COLOR=#0000ff]="259">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]tbody[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]tr[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#ff0000]colspan[/COLOR][COLOR=#0000ff]="2" [/COLOR][COLOR=#ff0000]width[/COLOR][COLOR=#0000ff]="259">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]img[/COLOR][COLOR=#ff0000]src[/COLOR][COLOR=#0000ff]="../v_1.0/img/visu_nav_login_title_interactif.gif" [/COLOR][COLOR=#ff0000]alt[/COLOR][COLOR=#0000ff]="" [/COLOR][COLOR=#ff0000]height[/COLOR][COLOR=#0000ff]="15" [/COLOR][COLOR=#ff0000]width[/COLOR][COLOR=#0000ff]="72"/>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]tr[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]tbody[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]table[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]div[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]form[/COLOR][COLOR=#ff0000]id[/COLOR][COLOR=#0000ff]="form_autoComplete" [/COLOR][COLOR=#ff0000]method[/COLOR][COLOR=#0000ff]="post" [/COLOR][COLOR=#ff0000]name[/COLOR][COLOR=#0000ff]="FormName" [/COLOR][COLOR=#ff0000]action[/COLOR][COLOR=#0000ff]="/everest/UWBI/UWBIAccueil?DEST=IDENTIFICATION" >[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]table[/COLOR][COLOR=#ff0000]style[/COLOR][COLOR=#0000ff]="margin-top: 5px;" [/COLOR][COLOR=#ff0000]border[/COLOR][COLOR=#0000ff]="0" [/COLOR][COLOR=#ff0000]cellpadding[/COLOR][COLOR=#0000ff]="0" [/COLOR][COLOR=#ff0000]cellspacing[/COLOR][COLOR=#0000ff]="0" [/COLOR][COLOR=#ff0000]width[/COLOR][COLOR=#0000ff]="259">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]tbody[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]tr[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="txt_white_login" [/COLOR][COLOR=#ff0000]align[/COLOR][COLOR=#0000ff]="left" [/COLOR][COLOR=#ff0000]width[/COLOR][COLOR=#0000ff]="20">[/COLOR]
[COLOR=#ff0000]&nbsp;[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="txt_white_login" [/COLOR][COLOR=#ff0000]align[/COLOR][COLOR=#0000ff]="left">[/COLOR]
Indicatif[COLOR=#0000ff]</[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="txt_white_login" [/COLOR][COLOR=#ff0000]align[/COLOR][COLOR=#0000ff]="left">[/COLOR]
N° de compte[COLOR=#0000ff]</[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="txt_white_login" [/COLOR][COLOR=#ff0000]align[/COLOR][COLOR=#0000ff]="left">[/COLOR]
Code personnel[COLOR=#0000ff]</[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]tr[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]tr[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#ff0000]align[/COLOR][COLOR=#0000ff]="left" [/COLOR][COLOR=#ff0000]valign[/COLOR][COLOR=#0000ff]="top">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]a[/COLOR][COLOR=#ff0000]href[/COLOR][COLOR=#0000ff]="javascript:APow(new%20Array('','https://particuliers.secure.lcl.fr/everest/S/UWDL/UWDLSTATIQUE/UWDLPUB/dep/cnx_i_ident.html','Aide',330,200,true,true,false,false,false,false,false,true,false,0,0,true))"[/COLOR]
[COLOR=#ff0000]title[/COLOR][COLOR=#0000ff]="Aide à la saisie des identifiants de connexion">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]img[/COLOR][COLOR=#ff0000]src[/COLOR][COLOR=#0000ff]="../v_1.0/img/visu_nav_login_aide.gif" [/COLOR][COLOR=#ff0000]alt[/COLOR][COLOR=#0000ff]="Aide à la saisie des identifiants de connexion" [/COLOR][COLOR=#ff0000]border[/COLOR][COLOR=#0000ff]="0" [/COLOR][COLOR=#ff0000]height[/COLOR][COLOR=#0000ff]="18" [/COLOR][COLOR=#ff0000]width[/COLOR][COLOR=#0000ff]="18"/>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]a[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#ff0000]align[/COLOR][COLOR=#0000ff]="left" [/COLOR][COLOR=#ff0000]valign[/COLOR][COLOR=#0000ff]="top">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]input[/COLOR][COLOR=#ff0000]id[/COLOR][COLOR=#0000ff]="agenceId" [/COLOR][COLOR=#ff0000]name[/COLOR][COLOR=#0000ff]="agenceId" [/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="in" [/COLOR][COLOR=#ff0000]OnBlur[/COLOR][COLOR=#0000ff]="testFocus(this.id)" [/COLOR][COLOR=#ff0000]size[/COLOR][COLOR=#0000ff]="6" [/COLOR][COLOR=#ff0000]tabindex[/COLOR][COLOR=#0000ff]="1" [/COLOR][COLOR=#ff0000]maxlength[/COLOR][COLOR=#0000ff]="4" [/COLOR][COLOR=#ff0000]type[/COLOR][COLOR=#0000ff]="text" />[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]input[/COLOR][COLOR=#ff0000]id[/COLOR][COLOR=#0000ff]="serviceId" [/COLOR][COLOR=#ff0000]name[/COLOR][COLOR=#0000ff]="serviceId" [/COLOR][COLOR=#ff0000]type[/COLOR][COLOR=#0000ff]="hidden" [/COLOR][COLOR=#ff0000]value[/COLOR][COLOR=#0000ff]="CLI"/>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#ff0000]align[/COLOR][COLOR=#0000ff]="left" [/COLOR][COLOR=#ff0000]valign[/COLOR][COLOR=#0000ff]="top">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]input[/COLOR][COLOR=#ff0000]id[/COLOR][COLOR=#0000ff]="compteId" [/COLOR][COLOR=#ff0000]maxlength[/COLOR][COLOR=#0000ff]="7" [/COLOR][COLOR=#ff0000]tabindex[/COLOR][COLOR=#0000ff]="2" [/COLOR][COLOR=#ff0000]OnBlur[/COLOR][COLOR=#0000ff]="testFocus(this.id)" [/COLOR][COLOR=#ff0000]name[/COLOR][COLOR=#0000ff]="compteId" [/COLOR][COLOR=#ff0000]size[/COLOR][COLOR=#0000ff]="9" [/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="in" [/COLOR][COLOR=#ff0000]type[/COLOR][COLOR=#0000ff]="text"/>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#ff0000]align[/COLOR][COLOR=#0000ff]="left" [/COLOR][COLOR=#ff0000]valign[/COLOR][COLOR=#0000ff]="top">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]input[/COLOR][COLOR=#ff0000]id[/COLOR][COLOR=#0000ff]="CodeId" [/COLOR][COLOR=#ff0000]maxlength[/COLOR][COLOR=#0000ff]="6" [/COLOR][COLOR=#ff0000]tabindex[/COLOR][COLOR=#0000ff]="3" [/COLOR][COLOR=#ff0000]OnBlur[/COLOR][COLOR=#0000ff]="testFocus(this.id)" [/COLOR][COLOR=#ff0000]name[/COLOR][COLOR=#0000ff]="CodeId" [/COLOR][COLOR=#ff0000]size[/COLOR][COLOR=#0000ff]="9" [/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="in" [/COLOR][COLOR=#ff0000]type[/COLOR][COLOR=#0000ff]="password"/>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]input[/COLOR][COLOR=#ff0000]src[/COLOR][COLOR=#0000ff]="../v_1.0/img/btn_nav_login_valider.gif" [/COLOR][COLOR=#ff0000]tabindex[/COLOR][COLOR=#0000ff]="4" [/COLOR][COLOR=#ff0000]alt[/COLOR][COLOR=#0000ff]="Valider" [/COLOR][COLOR=#ff0000]title[/COLOR][COLOR=#0000ff]="Valider" [/COLOR][COLOR=#ff0000]type[/COLOR][COLOR=#0000ff]="image"/>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]tr[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]tbody[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]table[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]form[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]script[/COLOR][COLOR=#ff0000]type[/COLOR][COLOR=#0000ff]="text/javascript">[/COLOR] 
document.getElementById([COLOR=#800000]'form_autoComplete'[/COLOR]).setAttribute([COLOR=#800000]"autocomplete"[/COLOR],[COLOR=#800000]"off"[/COLOR]);
[COLOR=#0000ff]</[/COLOR][COLOR=#800000]script[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]tr[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]tr[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="txt_white_login" [/COLOR][COLOR=#ff0000]colspan[/COLOR][COLOR=#0000ff]="2" [/COLOR][COLOR=#ff0000]align[/COLOR][COLOR=#0000ff]="left" [/COLOR][COLOR=#ff0000]bgcolor[/COLOR][COLOR=#0000ff]="#2c72c9" [/COLOR][COLOR=#ff0000]height[/COLOR][COLOR=#0000ff]="18">[/COLOR]
[COLOR=#ff0000]&nbsp;&nbsp;&nbsp;&nbsp;[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]img[/COLOR][COLOR=#ff0000]alt[/COLOR][COLOR=#0000ff]="" [/COLOR][COLOR=#ff0000]src[/COLOR][COLOR=#0000ff]="../v_1.0/img/picto_fleche_blue.gif" [/COLOR][COLOR=#ff0000]height[/COLOR][COLOR=#0000ff]="5" [/COLOR][COLOR=#ff0000]width[/COLOR][COLOR=#0000ff]="7" />[/COLOR][COLOR=#ff0000]&nbsp;[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]a[/COLOR][COLOR=#ff0000]href[/COLOR][COLOR=#0000ff]="http://particuliers.lcl.fr/oubli-du-code/" [/COLOR][COLOR=#ff0000]title[/COLOR][COLOR=#0000ff]="Code oublié ?"[/COLOR]
[COLOR=#ff0000]target[/COLOR][COLOR=#0000ff]="_blank" [/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="txt_blue_login">[/COLOR]Code oublié ?[COLOR=#0000ff]</[/COLOR][COLOR=#800000]a[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#ff0000]&nbsp;&nbsp;&nbsp;[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]img[/COLOR][COLOR=#ff0000]src[/COLOR][COLOR=#0000ff]="../v_1.0/img/picto_fleche_blue.gif"[/COLOR]
[COLOR=#ff0000]height[/COLOR][COLOR=#0000ff]="5" [/COLOR][COLOR=#ff0000]width[/COLOR][COLOR=#0000ff]="7" [/COLOR][COLOR=#ff0000]alt[/COLOR][COLOR=#0000ff]="" />[/COLOR][COLOR=#ff0000]&nbsp;[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]a[/COLOR][COLOR=#ff0000]href[/COLOR][COLOR=#0000ff]="https://particuliers.lcl.fr/CLi/demo" [/COLOR][COLOR=#ff0000]title[/COLOR][COLOR=#0000ff]="Démo LCL interactif"[/COLOR]
[COLOR=#ff0000]target[/COLOR][COLOR=#0000ff]="_blank" [/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="txt_blue_login">[/COLOR]Démo[COLOR=#0000ff]</[/COLOR][COLOR=#800000]a[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#ff0000]&nbsp;[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]img[/COLOR][COLOR=#ff0000]alt[/COLOR][COLOR=#0000ff]="" [/COLOR][COLOR=#ff0000]src[/COLOR][COLOR=#0000ff]="../v_1.0/img/arrow_anim_securite.gif"[/COLOR]
[COLOR=#ff0000]height[/COLOR][COLOR=#0000ff]="5" [/COLOR][COLOR=#ff0000]width[/COLOR][COLOR=#0000ff]="14"/>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]a[/COLOR][COLOR=#ff0000]href[/COLOR][COLOR=#0000ff]="https://informations.lcl.fr/securite/protection_saisies/index.html"[/COLOR]
[COLOR=#ff0000]title[/COLOR][COLOR=#0000ff]="Sécuriser vos saisies" [/COLOR][COLOR=#ff0000]target[/COLOR][COLOR=#0000ff]="_blank" [/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="txt_blue_securite">[/COLOR]Sécuriser vos saisies[COLOR=#0000ff]</[/COLOR][COLOR=#800000]a[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#ff0000]&nbsp;[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]tr[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]tbody[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]table[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#008000]<!--End Closure--><!-- Fin Zone d'identification -->[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]td[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]tr[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]tbody[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]table[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]div[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]div[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]div[/COLOR][COLOR=#ff0000]id[/COLOR][COLOR=#0000ff]="menu_haut">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]div[/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="hautIn">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]ul[/COLOR][COLOR=#ff0000]id[/COLOR][COLOR=#0000ff]="menu">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]li[/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="selected">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]h1[/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="menu01">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]a[/COLOR][COLOR=#ff0000]href[/COLOR][COLOR=#0000ff]="https://particuliers.secure.lcl.fr">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]span[/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="textTitre">[/COLOR]Particuliers[COLOR=#0000ff]</[/COLOR][COLOR=#800000]span[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]a[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]h1[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]li[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]li[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]h1[/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="menu02">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]a[/COLOR][COLOR=#ff0000]href[/COLOR][COLOR=#0000ff]="https://professionnels.secure.lcl.fr" >[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]span[/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="textTitre">[/COLOR]Professionnels[COLOR=#0000ff]</[/COLOR][COLOR=#800000]span[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]a[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]h1[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]li[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]li[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]h1[/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="menu03">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]a[/COLOR][COLOR=#ff0000]href[/COLOR][COLOR=#0000ff]="https://entreprises.secure.lcl.fr" >[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]span[/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="textTitre">[/COLOR]Entreprises [COLOR=#ff0000]&amp;[/COLOR] institutionnels[COLOR=#0000ff]</[/COLOR][COLOR=#800000]span[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]a[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]h1[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]li[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]li[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]h1[/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="menu04">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]a[/COLOR][COLOR=#ff0000]href[/COLOR][COLOR=#0000ff]="http://www.lcl.com/">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]span[/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="textTitre">[/COLOR]Tout sur LCL[COLOR=#0000ff]</[/COLOR][COLOR=#800000]span[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]a[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]h1[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]li[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]</[/COLOR][COLOR=#800000]ul[/COLOR][COLOR=#0000ff]>[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]div[/COLOR][COLOR=#ff0000]id[/COLOR][COLOR=#0000ff]="drop_menu" [/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="yuimenubar yuimenubarnav">[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]div[/COLOR][COLOR=#ff0000]id[/COLOR][COLOR=#0000ff]="dropmenu" [/COLOR][COLOR=#ff0000]class[/COLOR][COLOR=#0000ff]="bd">[/COLOR][COLOR=#008000]<!-- Obj_Menu_Univers -->[/COLOR][COLOR=#0000ff]<[/COLOR][COLOR=#800000]script[/COLOR][COLOR=#ff0000]type[/COLOR][COLOR=#0000ff]="text/javascript" >[/COLOR]
mais en plus, ce n'est pas de l'HTML mais du XHTML 🙄...
Bon courage 😎
 
- Navigue sans publicité
- Accède à Cléa, notre assistante IA experte Excel... et pas que...
- Profite de fonctionnalités exclusives
Ton soutien permet à Excel Downloads de rester 100% gratuit et de continuer à rassembler les passionnés d'Excel.
Je deviens Supporter XLD

Discussions similaires

Réponses
8
Affichages
982
Les cookies sont requis pour utiliser ce site. Vous devez les accepter pour continuer à utiliser le site. En savoir plus…