|
FoxWeb Support Team support@foxweb.com email |
<head>
<script> </head> <body> .. ... ... <div id="invDetail></div> |
<% Private lnIID lnIID = request.querystring("tnIID") if empty(lnIID) return endif text to lcSQL noshow Execute GetInvoiceDetailByIID ?lnIID endtext gosql.execute(lcSQL,'curInvDetail') if SQLError() response.write('Error retrieving invoice detail') return endif %> <table width="100%" border="1"> <tr> <td>Item Number</td> <td>Item Description</td> <td>Qty</td> <td>Price</td> <td>Tax?</td> <td>Tax Amnt</td> <td>Discount</td> <td>Sub-Total</td> <td>Serial Number</td> <td>Mobile No.</td> </tr> <% select curInvDetail scan %> <tr> <td><%=Item%></td> <td><%=Itmdesc%></td> <td><%=Qty%></td> <td><%=Price%></td> <td><%=iif(Taxable,'Yes','No')%></td> <td><%=TaxAmount%></td> <td><%=Discount%></td> <td><%=SubTotal%></td> <td><%=Serial%></td> <td><%=PTN%></td> </tr> <%endscan%> </table> |