I am using following code to display Field Name and Field Value from
table.
******************
sqlQuery = "SELECT * FROM tblTableName WHERE ID =" & intRecordID
Set Table = Conn.Execute(sqlQuery)
intFieldCount = Table.Fields.Count - 1
For i = 0 To intFieldCount
strName = Table(i).Name
strValue = Table(i).Value
Response.Write(strName & " : " & strValue & "<br>")
Next
*******************
But beside this I would also like to display Filed Description, Filed
Data Type (Text, Memo, Number) and other Filed Properties (Filed
Size, Default Value, etc)
How can I accomplish this?
Thanks ahead, John.