Bonjour,
j'ai ce premier code:index.html
donc dans le premier frame nommé sommaire j'ai mis une entete comme ça (entete.html) :Code:
1
2
3
4
5
6
7
8 <frameset rows="10%,80%,10%"> <frame src="entete.php" name="sommaire" frameborder="no" bordercolor="#FFFFFF" border="0" framespacing="0"> <frameset cols="80%, 20%"> <frame name="principale" frameborder="no" bordercolor="#FFFFFF" border="0" framespacing="0"> <frame name="second"> </frameset> <frame src="pied.php" name="pied" frameborder="no" bordercolor="#FFFFFF" border="0" framespacing="0"> </frameset>
et j'ai ce petit code: droite.hrmlCode:
1
2
3
4
5
6
7
8
9
10 <table width="1025" cellpadding="9" cellspacing="9" > <tr valign="top"> <td><img src="image/rechercher une solution.bmp" border="0"></td> <td><a href="nouveauticket.php" target="principale"><img src="image/nouveau_ticket.bmp" border="0"></a></td> <td> <a href="listeticket.php" target="principale"><img src="image/tickets.bmp" border="0"></a> </td> <td><a href="organisation.php" target="principale"><img src="image/administration.bmp" border="0"></a></td> </tr> </table>
Alors mon problème c'est que je veux quand je clique sur le lien du dernier image "administration.bmp" en plus que s'affiche dans le frame nommé principale la page organisation.php, je veux que dans le frame nommé second afficher la page droite.html.Code:
1
2
3
4
5
6
7
8
9 <html> <head> <title>Document sans titre</title> </head> <body> <img src="image/organisation.bmp" border="0"> </body> </html>
Quelqu'un peut m'aider svp?:oops:
Merci.