Bonjour,

j'ai un problème que je ne comprend absolument pas !

voila chez un fichier html qui ressemble à cela :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<a href="#A" title="A">A</a>
|
<a href="#B" title="B">B</a>
|
<a href="#C" title="C">C</a>
|
<a href="#D" title="D">D</a>
|
<a href="#E" title="E">E</a>
|
<a href="#F" title="F">F</a>
|
<a href="#G" title="G">G</a>
|
<a href="#H" title="H">H</a>
|
<a href="#I" title="I">I</a>
|
<a href="#J" title="J">J</a>
|
<a href="#K" title="K">K</a>
|
<a href="#L" title="L">L</a>
|
<a href="#M" title="M">M</a>
|
<a href="#N" title="N">N</a>
|
<a href="#O" title="O">O</a>
|
<a href="#P" title="P">P</a>
|
<a href="#Q" title="Q">Q</a>
|
<a href="#R" title="R">R</a>
|
<a href="#S" title="S">S</a>
|
<a href="#T" title="T">T</a>
|
<a href="#U" title="U">U</a>
|
<a href="#V" title="V">V</a>
|
<a href="#W" title="W">W</a>
|
<a href="#X" title="X">X</a>
|
<a href="#Y" title="Y">Y</a>
|
<a href="#Z" title="Z">Z</a>
</p>
Donc jusqu'ici tout va bien...

mais lorsque j'affiche ma page dans un navigateur web, c'est le drame..... J'obtiens :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<a href="#A" title="A">A</a>
|
<a href="#B" title="B">B</a>
|
<a href="#C" title="C">C</a>
|
<a href="#D" title="D">D</a>
|
<a href="#E" title="E">E</a>
|
<a href="#F" title="F">F</a>
|
<a href="" title="G">G</a>
|
<a href="" title="H">H</a>
|
<a href="" title="I">I</a>
|
<a href="" title="J">J</a>
|
<a href="" title="K">K</a>
|
<a href="" title="L">L</a>
|
<a href="" title="M">M</a>
|
<a href="" title="N">N</a>
|
<a href="" title="O">O</a>
|
<a href="" title="P">P</a>
|
<a href="" title="Q">Q</a>
|
<a href="" title="R">R</a>
|
<a href="" title="S">S</a>
|
<a href="" title="T">T</a>
|
<a href="" title="U">U</a>
|
<a href="" title="V">V</a>
|
<a href="" title="W">W</a>
|
<a href="" title="X">X</a>
|
<a href="" title="Y">Y</a>
|
<a href="" title="Z">Z</a>
</p>
et la moitié des HRef n'est plus, je retourne coté serveur sur mon fichier pour jeter oeil et tout est bien à sa place....

Merci !