Bonjour à tous.
j'ai une difficulté à soumettre :
Voici (ci-dessous) une page HTML qui fonctionne très bien sur localhost avec IE8 et Firefox.
(Page2.html se contente d'aficher "page 2" et c'est bien elle qui apparait dans le second iframe).
Sur un serveur internet, Firefox fonctionne, mais pas IE qui n'affiche ni la page1 ni la page2.
voir : http://services.emerit.net/ip/export/essai2.html
Quelqu'un connait-il ce cas et peut-il m'aider à comprendre ou à contourner cette bizarreté?
merci !
Graf
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 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252" /> <title>ESSAI<title> <script type="text/javascript"> function AffichePageSuivante(fichier) { frames["contenu"].location.href=fichier; } </script> </head> <body> <iframe width="100%" height="63px" name="commandes" src="files/commandes_cours.html" marginwidth="0" marginheight="0"> </iframe> <iframe width="100%" height="90%" name="contenu" src="page1.html" > </iframe> <script type="text/javascript"> AffichePageSuivante("page2.html") </script> </body> </html>
Partager