ASP 101 News Flash |
 |
|
|
Sample HTML Code generated by the ASP:
<table>
<thead>
<tr>
<th bgcolor="blue"><font color="white">Name</font></th>
<th bgcolor="blue"><font color="white">Sales</font></th>
<th bgcolor="blue"><font color="white">Commission</font></th>
</tr>
</thead>
<tbody>
<tr>
<td>David Andersen</td>
<td>6420</td>
<td>=(B2 * 0.05)</td>
</tr>
<tr>
<td>Laura Callahan</td>
<td>3675</td>
<td>=(B3 * 0.05)</td>
</tr>
<tr>
<td>Frank Edwards</td>
<td>3840</td>
<td>=(B4 * 0.05)</td>
</tr>
<tr>
<td>Chris Graham</td>
<td>4050</td>
<td>=(B5 * 0.05)</td>
</tr>
<tr>
<td>Owen Ingraham</td>
<td>4750</td>
<td>=(B6 * 0.05)</td>
</tr>
<tr>
<td>Robert King</td>
<td>5290</td>
<td>=(B7 * 0.05)</td>
</tr>
<tr>
<td>Greg Miller</td>
<td>5640</td>
<td>=(B8 * 0.05)</td>
</tr>
<tr>
<td>Ian Ostrander</td>
<td>3965</td>
<td>=(B9 * 0.05)</td>
</tr>
<tr>
<td>Howard Quinn</td>
<td>5865</td>
<td>=(B10 * 0.05)</td>
</tr>
<tr>
<td>Tammy Steel</td>
<td>3570</td>
<td>=(B11 * 0.05)</td>
</tr>
<tr>
<td>Debra Underwood</td>
<td>3790</td>
<td>=(B12 * 0.05)</td>
</tr>
<tr>
<td>Mark White</td>
<td>4500</td>
<td>=(B13 * 0.05)</td>
</tr>
<tr>
<td>Quincy Youngs</td>
<td>4420</td>
<td>=(B14 * 0.05)</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td><strong><font color="blue">Totals:</font></strong></td>
<td><font color="red">=SUM(B2:B14)</font></td>
<td><font color="red">=SUM(C2:C14)</font></td>
</tr>
</tbody>
</table>

|
|