Modélisation avec des gridview
	
	
		Bonjour,
J'aimerais bien modéliser la page HTML suivante 
	Code:
	
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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
   | <table style="width: 100%;" border="0">
        <tr>
            <th>
            </th>
            <th>
            </th>
            <th colspan="12" style="background-color: Silver; color: White; font-weight: bold">
                Header1
            </th>
        </tr>
        <tr style="background-color: Silver; color: White; font-weight: bold">
            <th rowspan="2">
               Name
            </th>
            <th rowspan="2">
               date             </th>
            <th colspan="4">
                period1
            </th>
            <th colspan="4">
                period2
            </th>
            <th colspan="4">
                period3
            </th>
        </tr>
        <tr>
            <th style="background-color: Silver; color: White; font-weight: bold">
               imagPeriod1
            </th>
            <th style="background-color: Silver; color: White; font-weight: bold">
               imag2Period1
 
            </th>
            <th style="background-color: Silver; color: White; font-weight: bold">
                             imag3Period1
 
            </th>
            <th style="background-color: Silver; color: White; font-weight: bold">
                Total
            </th>
            <th style="background-color: Silver; color: White; font-weight: bold">
                               imagPeriod2
 
            </th>
            <th style="background-color: Silver; color: White; font-weight: bold">
                               imag2Period2
 
            </th>
            <th style="background-color: Silver; color: White; font-weight: bold">
                               imag3Period2
 
            </th>
            <th style="background-color: Silver; color: White; font-weight: bold">
                Total
            </th>
            <th style="background-color: Silver; color: White; font-weight: bold">
                               imagPeriod3
 
            </th>
            <th style="background-color: Silver; color: White; font-weight: bold">
                               imag2Period3
            </th>
            <th style="background-color: Silver; color: White; font-weight: bold">
                               imagPeriod3
 
            </th>
            <th style="background-color: Silver; color: White; font-weight: bold">
                Total
            </th>
        </tr>
        <tr style="background-color: #CCECFF;">
            <td>
                bablala
            </td>
            <td>
                <img src="../Images/statusOK.png" />
              07/03/2010            </td>
            <td>
                1
            </td>
            <td>
                2
            </td>
            <td>
                3
            </td>
            <td>
                6
            </td>
            <td>
                400
            </td>
            <td>
                500
            </td>
            <td>
                600
            </td>
            <td>
                1500
            </td>
            <td>
                1
            </td>
            <td>
               2
            </td>
            <td>
               3            </td>
            <td>
                6
            </td>
        </tr> | 
 
Comment modéliser cela avec une gridview si possible pour que les headers correspondent? on doit s'arranger avec "les headertemplate"?