|
HTA file - display data from DB records in table like ASP - how? In ASP I can display data from database records in a table using something
like
....
<td><%response.write(rs("FirstName")%></td>
<td><%response.write(rs("Lastname")%></td>
....
(I forget - I haven't written asp in a while)
Anyway, now I need to do something similar in an HTA file. How do I display
the data in a table format like the asp?
Thanks,
Rich |