P
Paulo
Hi, using the following code:
<%
Response.Buffer
Response.AddHeader "Content-Disposition",
"attachment;filename=Relatorio_Individual.xls"
Response.ContentType = "application/vnd.ms-excel"
%>
<table width="805" border="1" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#660000" align="center" colspan="5" height="19"><img
src="imagens/logo.gif"></td>
<td bgcolor="#660000" align="center" colspan="5" height="19">
<font face="arial" size="3" color="#FFFFFF">
<b>QUILOMBO - Avaliação de Desempenho - Relatório Individual</b>
</font>
</td>
</tr>
</table>
.... here goes the rest of code, connecting db, etc...
%>
but the "imagens/logo.gif" doesnt show on Excel... it appears a X (just like
when the image was not found)
and I need it on my excel report...
How can I do that?
Thanks in advance!
<%
Response.Buffer
Response.AddHeader "Content-Disposition",
"attachment;filename=Relatorio_Individual.xls"
Response.ContentType = "application/vnd.ms-excel"
%>
<table width="805" border="1" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#660000" align="center" colspan="5" height="19"><img
src="imagens/logo.gif"></td>
<td bgcolor="#660000" align="center" colspan="5" height="19">
<font face="arial" size="3" color="#FFFFFF">
<b>QUILOMBO - Avaliação de Desempenho - Relatório Individual</b>
</font>
</td>
</tr>
</table>
.... here goes the rest of code, connecting db, etc...
%>
but the "imagens/logo.gif" doesnt show on Excel... it appears a X (just like
when the image was not found)
and I need it on my excel report...
How can I do that?
Thanks in advance!