Hi All, I am trying to the following:
The code is written in ASP, the output is from a database. I am trying to multiply the QTY and RATE#2 and display total with each order in the returned data. This relates to the last td's in the output.
I also want to data to 2 decimal places(currancy)
Anything else required please let me know
Thanks in advance
David
<tr>
<td height="30"><a href="/dashboard-fullscreen/individual/contracts/view.asp?Allow=f875eba085941cc78509bd3482dc0294&Contract=<%= rowCrossHire("CONTNO") %>" target="_blank" title="View <%= rowCrossHire("CONTNO") %>"><%= rowCrossHire("CONTNO") %></a></td>
<td height="30"><%= sonNo %></td>
<td height="30"><%= rowCrossHire("ACCTNAME") %></td>
<td height="30"><%= rowCrossHire("ITEMNO") %></td>
<td height="30"><%= itemDescription %></td>
<td align="center" height="30"><%= getItemStatus(rowCrossHire("STATUS")) %></td>
<td align="center" height="30"><%= rowCrossHire("NLCODE") %></td>
<td align="center" height="30"><%= rowCrossHire("QTY") %></td>
<td align="center" height="30"><%= rowCrossHire("QTYRETD") %></td>
<td align="center" height="30"><%= rowCrossHire("RATE#1") %></td>
**<td align="center" height="30"><%=("RATE#1") * ("QTY") %></td>**
</tr>