I have stored procedure to produce below result:
Currently I'm using ASP as below code to display html table as above;
if DBExecute(SQL,adoConn2,rsSQL,True) then
while not rsSQL.eof
<tr>
<td>1st data</td>
<td>2nd data</td>
<td>3rd data</td>
<td>4th data</td>
<td>5th data</td>
</tr>
rsSQL.movenext
wend
end i
The question is how implement rowspan for the same '1st data' in the table? So that my table should look like this;
---------------------------------
SCB0007091 | BCRP01 | 2 | 2 | 0 |
---------------------------------
SCB0007092 | EFFY | 1 | 1 | 0 |
----------------------
| BJGG01 | 5 | 5 | 0 |
----------------------
| BSP401 | 3 | 3 | 0 |
---------------------------------
SCB0007093 | CGMO01 | 10| 10| 0 |
