Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Response.Write "<table width=""100%"">"
Do UNTIL rsSchema.EOF
i=i+1
prevtable=thistable
thistable=rsSchema("Table_Name")
thiscolumn=rsSchema("COLUMN_NAME")
If thistable<>prevtable Then
i=0
Response.Write "<tr><td>Table= " & thistable & " </td></tr>"
sql = "select * from ["&thistable&"]"
Set rs = conntemp.Execute(sql)
Response.Write "<tr><td>"
Response.Write "<table><tr>"
Do While NOT rs.EOF
Response.Write "<td>" & rs(i) & "</td>"
rs.MoveNext
Loop
Response.Write "</tr></table>"
Response.Write "</td></tr>"
End If
rsSchema.MoveNext
Loop
Response.Write "</table>"