Well, I am by no means a coding expert. But I came up with the following:
_______________
<div id="contentSection">
<table id="mainWrapper" border="0" cellpadding="0" cellspacing="0"><tr><td>
<table class="main fixed" border="0" cellpadding="0" cellspacing="0">
<% 'Open the database.
call OpenDB()
dim rs, strsql, field, dbcon
set rs = server.createobject("adodb.recordset")
strsql = "SELECT username, emailaddress, contactinformation FROM Users"
rs.open strsql, Dbconn
%>
<TABLE BORDER="1" width="80%">
<% rs.movefirst %> <TR>
<% For Each Field In RS.Fields %>
<TH>
<% If Field.Name <> "ID" Then
response.write Field.name
End If %> </TH>
<% Next %>
</TR>
<% Do While Not RS.EOF %>
<TR>
<% For Each Field In RS.Fields %>
<TD ALIGN=center>
<%If IsNull(Field) Then
Response.Write ""
Else
If Field.name = "username" then
response.write field.value
end if
Response.Write decrypt(Field.Value)
End If %> </TD>
<% Next
RS.MoveNext %>
</TR>
<% Loop %>
</TABLE>
</table>
</div>
</table>
_____________________