|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now! |
|
#1
|
|||
|
|||
|
how to display records in vbscript in table
hii theree
I have a set of records in a table in acces. I want to display these records in a table format using vbscript/ADO connection. can anyone tell me how to do this for all the records since vbscript does not allow the table tag to work in its own tag...so plss tell me how to do this ... thanks ravi |
|
#2
|
|||
|
|||
|
You need to create the table outside of the vbscript. e.g.
Code:
<table>
<tr>
<!--- put your table headers in this row --->
</tr>
<% ' now go through your records and create a new row for each
Do While NOT recordset.EOF %>
<tr>
<!--- put your record values in here as per headers --->
</tr>
<% ' get the next record
recordset.MoveNext
Loop %>
</table>
Hope this helps. ![]()
__________________
How can I soar like an eagle when I'm flying with turkey's? |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > Visual Basic Programming > how to display records in vbscript in table |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|