Bonjour,

Je gere actuellement 3 sites pour ma guilde qui sont:
Forum: http://guilde-newhope.meilleurforum.com/
Raid : http://wowgu.free.fr/NewHope/PHPRaider/
Dkp : http://wowgu.free.fr/NewHope/eqdkp/

Pour passer de l'un à l'autre facilement j'ai voulu developper un petit portail html avec 2 Frames
=> http://wowgu.free.fr/NewHope/Portal2/

Maintenant j'ai un soucis forum et Raid navigue bien dans la 2eme frame
mais le dkp retire la frame des que je navigue dessus ce que je ne veux pas.

Y a t-il un moyen facile de corriger le probleme ?

Frame Titre
Code HTML : 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
 
<html>
	<head>
		<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
		<title>Guilde New Hope</title>
	    <base target="_self">
	</head>
	<body background="http://i34.servimg.com/u/f34/11/98/09/35/csow0210.jpg" bgcolor="#000000" text="#FFFFFF" link="#FFFF00" vlink="#FF0033" alink="#00FF00" leftmargin="0" topmargin="6" marginwidth="0" marginheight="0">
	<div align="center">
		<table border="1" cellpadding="0" cellspacing="2">
			<tr height="102"> 
				<td height="102"> 
					<div align="center"> 
						<img border="0" src="http://i34.servimg.com/u/f34/11/98/09/35/wolnoa10.jpg"> 
					</div>
				</td>
			</tr>
		</table>
		<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" >
			<tr>
				<td width="33%" align="center">
					<a href="http://wowgu.free.fr/NewHope/PHPRaider" target="Corps">
					<img src="images/bouton PHPRaider.gif" border="0"onMouseOver="this.src='images/bouton PHPRaider inv.gif'" onMouseOut="this.src='images/bouton PHPRaider.gif'" width="105" height="24"></a>
				</td>
				<td width="33%" align="center">
					<a href="http://wowgu.free.fr/NewHope/eqdkp" target="Corps">
					<img src="images/bouton DKP.gif" border="0"onMouseOver="this.src='images/bouton DKP inv.gif'" onMouseOut="this.src='images/bouton DKP.gif'" width="105" height="24"></a>
				</td>
        			<td width="34%" align="center">
					<a href="http://guilde-newhope.meilleurforum.com" target="Corps">
					<img src="images/bouton Forum.gif" border="0"onMouseOver="this.src='images/bouton Forum inv.gif'" onMouseOut="this.src='images/bouton Forum.gif'" width="105" height="24"></a>
				</td>
      			</tr>
		</table>
	</div>	
	</body>
</html>

Index du Portail
Code html : 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
<html>
	<head>
		<TITLE>New Hope - Guilde Alliance - Dalaran</TITLE>
		<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
	</head>	
	<frameset rows="199,*" framespacing="0" border="1" frameborder="1">
		<frame src="frame_titre.html" name="Frame Titre" scrolling="no" target="_self" noresize>		
		<frameset rows="*"> 
    			<frame src="http://guilde-newhope.meilleurforum.com" name="Corps" noresize scrolling="auto">
		</frameset>
  	</frameset>
	<noframes>
		<body bgcolor="#ffffff">
			<p></p>
		</body>
	</noframes>
</html>

D'avance merci.