C
Craig
I have a 3rd party product that is quite old.
It produces reports dynamically via the web.
It users templates to do this.
They are very basic, one looks like this.
<html>
<head>
<meta name="author" >
</head>
<body>
<center>
<table cellpadding=3 cellspacing=0>
%REPORT%
</table>
</center>
</body>
</html>
Where the %report% variable is, this gets replaced with rows of data
(ie. <tr></tr>). The problem is that it translates the fonts from the
Report into very old html code.
Like this
<TR>
<TD NOWRAP ALIGN="left"><FONT FACE="Arial" SIZE=3><IMG
SRC="/images/empty.gif"> Net Trade Working Capital</FONT></TD>
<TD ALIGN="right"><FONT FACE="Arial" SIZE=3>147,345.00</FONT></TD>
<TD ALIGN="right"><FONT FACE="Arial" SIZE=3>70,111.00</FONT></TD>
<TD ALIGN="right"><FONT FACE="Arial" SIZE=3>110.16</FONT></TD>
<TD> </TD>
<TD> </TD>
</TR>
So with it having the font face styles in every column can we right
code to overwrite this?
I want to take control of the table and be able to set the row height
on row 1 where the headers go, also would like to set column
widths/colours etc.
Any ideas would be great
Regards
Craig
It produces reports dynamically via the web.
It users templates to do this.
They are very basic, one looks like this.
<html>
<head>
<meta name="author" >
</head>
<body>
<center>
<table cellpadding=3 cellspacing=0>
%REPORT%
</table>
</center>
</body>
</html>
Where the %report% variable is, this gets replaced with rows of data
(ie. <tr></tr>). The problem is that it translates the fonts from the
Report into very old html code.
Like this
<TR>
<TD NOWRAP ALIGN="left"><FONT FACE="Arial" SIZE=3><IMG
SRC="/images/empty.gif"> Net Trade Working Capital</FONT></TD>
<TD ALIGN="right"><FONT FACE="Arial" SIZE=3>147,345.00</FONT></TD>
<TD ALIGN="right"><FONT FACE="Arial" SIZE=3>70,111.00</FONT></TD>
<TD ALIGN="right"><FONT FACE="Arial" SIZE=3>110.16</FONT></TD>
<TD> </TD>
<TD> </TD>
</TR>
So with it having the font face styles in every column can we right
code to overwrite this?
I want to take control of the table and be able to set the row height
on row 1 where the headers go, also would like to set column
widths/colours etc.
Any ideas would be great
Regards
Craig