ColdFusionKing
Programmer
This is more of a html question really. I have this table with <tr> tags, the first <tr> tag displays the column headings and the second <tr> displays the data for the columns. Here it is.
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<TR vAlign="top">
<td vAlign="bottom" width="100%">
<table border="1" width="100%" cellpadding="0" cellspacing="0">
<TR vAlign="top">
<TD vAlign="bottom" width="20%" bgColor="#444444" class="arttext">
<font color="#FFFFFF">Date/Time</font>
</TD>
<TD vAlign="bottom" width="58%" bgColor="#444444" class="arttext">
<font color="#FFFFFF">Document</font>
</TD>
<TD vAlign="bottom" width="15%" bgColor="#444444" class="arttext">
<font color="#FFFFFF">User Name</font>
</TD>
<TD vAlign="bottom" width="7%" bgColor="#444444" class="arttext">
<font color="#FFFFFF">Status</font>
</TD>
</TR>
</table>
</td>
</TR>
<TR>
<td width="100%">
<table border="1" width="100%" cellpadding="0" cellspacing="0">
<TR vAlign="top">
<TD vAlign="top" width="20%" bgColor="E4E4E4" class="arttext">26/09/2003 18:20:46</TD>
<TD vAlign="top" width="58%" bgColor="E4E4E4" class="arttext"> /blah blah blah/Helpdesk/Uploads/blahblahblahFolder/blahblahblahFolder/blahblahblahFolder/blahblahblahFolder/blahblahblahFolderblahblahblahFolder/blahblahblahFolder/blahblahblahFolder/blahblahblahFolder/blahblahblahFolder/blahblahblahFolder.doc
</TD>
<TD vAlign="top" width="15%" bgColor="E4E4E4" class="arttext">NATIONAL\raynem10
</TD>
<TD vAlign="top" width="7%" bgColor="E4E4E4" class="arttext">FAILED
</TD>
</TR>
</table>
</td>
</TR>
</table>
If you copy and save the above code in a html/cf file and view it on the browser, you will see the data in the "document" column screws up the table display. I am trying to find a way around this problem. Can somebody please show me how to do this.
Best Regard
Allan
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<TR vAlign="top">
<td vAlign="bottom" width="100%">
<table border="1" width="100%" cellpadding="0" cellspacing="0">
<TR vAlign="top">
<TD vAlign="bottom" width="20%" bgColor="#444444" class="arttext">
<font color="#FFFFFF">Date/Time</font>
</TD>
<TD vAlign="bottom" width="58%" bgColor="#444444" class="arttext">
<font color="#FFFFFF">Document</font>
</TD>
<TD vAlign="bottom" width="15%" bgColor="#444444" class="arttext">
<font color="#FFFFFF">User Name</font>
</TD>
<TD vAlign="bottom" width="7%" bgColor="#444444" class="arttext">
<font color="#FFFFFF">Status</font>
</TD>
</TR>
</table>
</td>
</TR>
<TR>
<td width="100%">
<table border="1" width="100%" cellpadding="0" cellspacing="0">
<TR vAlign="top">
<TD vAlign="top" width="20%" bgColor="E4E4E4" class="arttext">26/09/2003 18:20:46</TD>
<TD vAlign="top" width="58%" bgColor="E4E4E4" class="arttext"> /blah blah blah/Helpdesk/Uploads/blahblahblahFolder/blahblahblahFolder/blahblahblahFolder/blahblahblahFolder/blahblahblahFolderblahblahblahFolder/blahblahblahFolder/blahblahblahFolder/blahblahblahFolder/blahblahblahFolder/blahblahblahFolder.doc
</TD>
<TD vAlign="top" width="15%" bgColor="E4E4E4" class="arttext">NATIONAL\raynem10
</TD>
<TD vAlign="top" width="7%" bgColor="E4E4E4" class="arttext">FAILED
</TD>
</TR>
</table>
</td>
</TR>
</table>
If you copy and save the above code in a html/cf file and view it on the browser, you will see the data in the "document" column screws up the table display. I am trying to find a way around this problem. Can somebody please show me how to do this.
Best Regard
Allan