devxlogo

How to Convert ADO RecordSet into the HTML Table

How to Convert ADO RecordSet into the HTML Table

The following code converts an ADO recordset into an HTML table by using the GetString function of the recordset. This method does not involve the looping or MoveNext method; it directly converts the recordset into the HTML table.

This code also demonstrates how we can create an HTML table column heading from the Fields Collection of a recordset.

 <%set rs=server.createobject("ADODB.RecordSet")rs.ActiveConnection="Provider=SQLOLEDB;
Database=USTEST;Server=Softech_sql;UID=sa;PWD=;"rs.CursorLocation=adUseClientrs.CursorType=adOpenStaticrs.LockType=adLockOptimisticrs.Source="Select ItMas_Id AS 'Item Id',
ItMas_Name AS 'Item Name',
ItMas_Code AS 'Item Code',
PGrpM_Name AS 'Group Name'
from ItemMas Inner Join PGrp_Mas
on ItemMas.Itmas_pgrpid=Pgrp_Mas.Pgrpm_id
where pgrpm_id=33"rs.Openresponse.write ""for each f in rs.fieldsresponse.write ""nextresponse.write ""response.write "
" & f.name & "
"response.write rs.getstring(,50,"",
"
")response.write "
"%>
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist