add phone to print invoice
Posted: Thu Jun 19, 2008 3:10 pm
my client needs the customer phone number added to the print invoice. anyone know how to add it?
Code: Select all
<tr>
<td style="width:10px;text-align:center;font-weight:bold" valign="top">
S O L D T O
</td>
<td valign="middle" width="50%">
<%# GetBillToAddress(Container.DataItem) %>
</td>
<td style="width:10px;text-align:center;font-weight:bold" valign="top">
S H I P T O
</td>
<td valign="middle" width="50%">
<%# GetShipToAddress(Container.DataItem) %>
</td>
</tr>
[I added this line here--->]<tr><td><asp:Label ID="Label1" runat="server" Text="Billing Phone:"></asp:Label></td><td>'<%# Eval("BillToPhone") %>'</td></tr>