I have a database but no SQL Manager so cannot see what the column names are or see what data is in those columns
How do I output using asp all column names and their data, I guess it is along the lines of
for each column in table
response.write columnname & ":" & column.value
next
the table is of the format
here1 here2 3here here4
there 1 2 3 4
there2 3 1 5 6
there3 2 3 2 1
so I would need to output
there
here1: 1
here2: 2
here3: 3
here4: 4
there2
here1: 3
here2: 1
here3: 5
here4: 6
is this possible?
How do I output using asp all column names and their data, I guess it is along the lines of
for each column in table
response.write columnname & ":" & column.value
next
the table is of the format
here1 here2 3here here4
there 1 2 3 4
there2 3 1 5 6
there3 2 3 2 1
so I would need to output
there
here1: 1
here2: 2
here3: 3
here4: 4
there2
here1: 3
here2: 1
here3: 5
here4: 6
is this possible?