Masood,
I have not used DB Wizard, and have written only a little ASP
But the display must be controlled by the HTML code
For example, the following code will display "name" "comments" and
Timestamp" vertically (in separate rows)
<table>
<tr><td><%=FP_FieldVal(fp_rs,"name")%></td></tr>
<tr><td><%=FP_FieldVal(fp_rs,"comments")%></td></tr>
<tr><td><%=FP_FieldVal(fp_rs,"Timestamp")%></td></tr>
</table>
The following code will display them horizontally (in adjacent columns)
<table>
<tr>
<td><%=FP_FieldVal(fp_rs,"name")%></td>
<td><%=FP_FieldVal(fp_rs,"comments")%></td>
<td><%=FP_FieldVal(fp_rs,"Timestamp")%></td>
</tr>
</table>
You can edit the HTML code using the HTML or Code tab