Hi all,
I am wondering if anyone has any idea that writing a row header of compare list.
At the begining, i decided to make a listview to do this.
| <LayoutTemplate> |
| <table id="Table1" runat="server" border="1" |
| style="background-color: #FFFFFF;border-collapse: collapse;border-color: #999999;border-style:none;border-width:1px;font-family: Verdana, Arial, Helvetica, sans-serif;"> |
| <tr> |
| <td>Happy</td> |
| <%-- Goes here? --%> |
| <asp:PlaceHolder ID="EmployeesContainer" runat="server" /> |
| </tr> |
| <tr> |
| <td>Money</td> |
| </tr> |
| <tr> |
| <td>Good</td> |
| </tr> |
| </table> |
| </LayoutTemplate> |
| <ItemTemplate> |
| <td> |
| <asp:Label ID="YSE" runat="server" |
| Text='<%# Eval("YES") %>' /> |
| <%-- How about "Money" and "Good" column? --%> |
| </td> |
| </ItemTemplate> |
It is difficult to make a codeless listview but now I just want to achieve this with anyway.
As u can see the attachment, happy, money and good are columns. A, B, C... are data.
If this is impossible, then I will write a table for this. Thx!