CSS to format DB results

S

steverino

How can I use CSS to format the fields resulting from a DB query? I need a
different style for each field_name.
 
M

Murray

<td class="whatever"><% response.write('yourquery') %></td><td
class="whatever_else"><% response.write('yourotherquery') %></td>
 
M

MD Websunlimited

Hi Steve,

You have to set a class selector id on the wherever tag you use to plan to use to format the data.
<div class="mydata">
</div>

<tr class="id"><td class="myid">

</td>
<tr>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top