1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
<script type="text/javascript">
function ouvrir() {
if (document.getElementById("accordeon").style.display == "none") {
document.getElementById("accordeon").style.display = "block";
}
else {
document.getElementById("accordeon").style.display = "none";
}
}
</script>
<asp:Image ID="imgCroix" runat="server" />
<asp:Label ID="lblTitre" runat="server"></asp:Label>
<div id="accordeon" style="display:none;">
<asp:Table ID="tblGlobale" runat="server">
<asp:TableRow>
<asp:TableCell>
<asp:Label ID="lblTexteBase" runat="server" Text="j'affiche pour le test"></asp:Label>
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</div> |