Salut,

Voilà, j'ai un problème sur des contrôles de type "Table". J'ai deux tableaux qui se superposent !

Comment éviter ça ?

Je peux en faisant un <br/> (ce que j'ai commencé) mais c'est pas génial. Vous avez une solution ?

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
<body>
        <asp:table  id="Table1" Runat="server" BackColor="Transparent" Visible="true" EnableViewState="False"
                    BorderWidth="2px" BorderStyle="Solid" BorderColor="#FF8000" HorizontalAlign="Right" Height="66px"
                    cellSpacing="2" cellPadding="2" width="100%" GridLines="Both" />		
		<br />
		<br />
		<br />
        <br />
 
		<asp:table  id="Table2" Runat="server" BackColor="Transparent" Visible="true" EnableViewState="False"
                    BorderWidth="2px" BorderStyle="Double" BorderColor="#FF8000" HorizontalAlign="Left" Height="66px"
                    cellSpacing="2" cellPadding="2" width="100%" GridLines="Both" />
</body>