Click to See Complete Forum and Search --> : Wrap text


daniel50096230
June 25th, 2009, 09:35 PM
I have the following code in my HTML:



<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>



I would like to wrap the "Description", how can I do so???