I have the following code in my HTML:
I would like to wrap the "Description", how can I do so???Code:<asp:Repeater runat="server" id="RepARDetails"> <ItemTemplate> <tr> <td align="center" class="tableitem" width="3%" > <%#Container.DataItem("LineNo")%> </td> <td align="left" class="tableitem" width="11%" > <%#Container.DataItem("Description")%> </td> <td align="center" class="tableitem" width="10%"> <%#Container.DataItem("QtyOrd")%> </td> <td class="tableitem" width="8%" align="center"> <%#Container.DataItem("QtyShipped")%> </td> <td align="center" class="tableitem" width="6%"> <%#FormatNumber(Container.DataItem("UnitPrice"), 2)%> </td> <td align="right" class="tableitem" width="11%"> <%#FormatNumber(Container.DataItem("ExtendedAmt"), 2)%> </td> </tr> </ItemTemplate> </asp:Repeater>


Reply With Quote