Bonjour

Je viens de constater avec effroi apres avoir cherché 30 minute mon erreur, que l'affichage du designer est pire que peu fiable !
Il est parfois completement faux par rapport au resultat reel !!

Avez vous déja vécu ca ?

Dans l'exemple suivant
1- Au debut La row en bleu n'existe pas : l'affichage est correct
2- J'ajoute la partie bleue (avec editeur) : le designer affiche correctement la nouvelle row
3- J'ajoute les attributs center : tout part en coquille (sans le q), particulièrement les textbox de la dernière table : mais a l'execution dans le Browser, tout est correct
4- J'enlève avec l'editeur le row ajouté
5- L'affichage redevient normal
6- Je refais un paste de ce que j'ai enlevé : tout reste normal ?

C'est grave docteur ?

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
72
      <div class="left" style="border: thin solid #808080; height: 311px;">
        <!-- les p et les ul peuvent être considérés comme des blocs -->
        <p style="text-align: center">
          Niet toegelaten volle dagen of uren</p>
        <table style="width:100%;">
                    <tr>
        <td align="center">Algemeen</td>
        <td align="center">Specifiek</td>
    </tr>
          <tr>
            <td>
              <asp:CheckBoxList ID="chklb_ForbidDays" runat="server" Width="105px" Height="155px">
                <asp:ListItem>Zondag</asp:ListItem>
                <asp:ListItem>Maandag</asp:ListItem>
                <asp:ListItem>Dindsdag</asp:ListItem>
                <asp:ListItem>Woensdag</asp:ListItem>
                <asp:ListItem>Donderdag</asp:ListItem>
                <asp:ListItem>Vrijdag</asp:ListItem>
                <asp:ListItem>Zaterdag</asp:ListItem>
              </asp:CheckBoxList>
            </td>
            <td class="style1">
              <asp:CheckBoxList ID="chklb_ForbidDaysSpc0" runat="server" Height="155px" Width="105px">
                <asp:ListItem>Zondag</asp:ListItem>
                <asp:ListItem>Maandag</asp:ListItem>
                <asp:ListItem>Dindsdag</asp:ListItem>
                <asp:ListItem>Woensdag</asp:ListItem>
                <asp:ListItem>Donderdag</asp:ListItem>
                <asp:ListItem>Vrijdag</asp:ListItem>
                <asp:ListItem>Zaterdag</asp:ListItem>
              </asp:CheckBoxList>
            </td>
          </tr>
        </table>
        <div style="height: 98px">
          <table style="width:100%;">
    <tr>
        <td align="center">van</td>
        <td align="center">tot</td>
        <td align="center">van</td>
        <td align="center">tot</td>
    </tr>
    <tr>
        <td>
          <asp:TextBox ID="txbT1a" runat="server" Width="90%"></asp:TextBox>
        </td>
        <td>
          <asp:TextBox ID="txbT1b" runat="server" Width="90%"></asp:TextBox>
        </td>
        <td>
          <asp:TextBox ID="txbT2a" runat="server" Width="90%"></asp:TextBox>        
        </td>
        <td>
          <asp:TextBox ID="txbT2b" runat="server" Width="90%"></asp:TextBox>        
        </td>
    </tr>
    <tr>
        <td>
          <asp:TextBox ID="TextBox5" runat="server" Width="90%"></asp:TextBox>
        </td>
        <td>
          <asp:TextBox ID="TextBox6" runat="server" Width="90%"></asp:TextBox>
        </td>
        <td>
          <asp:TextBox ID="TextBox7" runat="server" Width="90%"></asp:TextBox>        
        </td>
        <td>
          <asp:TextBox ID="TextBox8" runat="server" Width="90%"></asp:TextBox>        
        </td>    </tr>    
          </table>
        </div>
      </div>