Bonjour,
J'ai plusieurs Label dans ma page aspx mais ils n'apparaissent pas sur la page.
Pourtant ils sont bien visibles lorsque j'édite la page dans Visual Studio 2005. J'ai bien vérifié que le label.visible=true.
Je ne comprend pas.
Ci-joint mon code html
Merci d'avance
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71 <body onload="colorubss('04','f');"> <form id="form1" runat="server"> <div id="borders"> <div id="mainContainer"> <!-- ** DEBUT header ** --> <uc1:header ID="header" runat="server" /> <!-- ** FIN header ** --> <!-- ** DEBUT bloc main ** --> <table id="main" style="left: 0px; top: 0px; width: 100%"> <tr> <td style="padding-top: 10px; font-size: 20px; color: #cc001e; font-weight: normal"> <asp:Label ID="Label1" runat="server" Text="Texte"></asp:Label> </td> </tr> <tr> <td style="width: 857px"> <table id="bottomFrame" style="width: 100%; height: 100%"> <tr> <td id="image" style="padding-right: 9px"> <img src="images/IMAGE.jpg" /></td> <td style="height: 90%; width: 90%; border-right: dashed 1px #999999; padding-left: 9px;"> <table id="blabla" style="width: 100%; height: 100%"> <tr> <td> <asp:Label ID="lbl2" runat="server" Text="Texte"> </asp:Label> </td> </tr> <tr> <td> <asp:RadioButtonList ID="radioButton" runat="server"> </asp:RadioButtonList> </td> </tr> <tr> <td> <asp:Label ID="lbl3" runat="server" Text="Texte"> </asp:Label> </td> </tr> <tr> <td style="height: 22px"> <asp:TextBox ID="txt" runat="server"> </asp:TextBox> </td> </tr> </table> </td> <td id="module2" style="height: 100%; width: 155px; padding-left: 9px; padding-right: 9px"> <div id="outils"> <div id="outils2"> <ul> <li style="background-image: url(images/image.gif)"><a href="page.aspx" title="Titre">titre</a></li> </ul> </div> <uc2:outils2 ID="outils2" runat="server" /> </div> </td> </tr> </table> </td> </tr> <!-- ** FIN bloc main ** --> </table> </div> <uc3:PiedPage ID="PiedPage1" runat="server" /> </div> </form> </body>
Patachou
ps : le problème pourrait-il être dû à un css?
Partager