Provar igen eftersom ingen kunde hjälpa mig med mitt förra problem (se min förra tråd [Exportera websida till excel, pdf eller jpeg] ). Den här gången bryter jag dock ned problemet, så kanske nån kan hjälpa mig.Exportera graf till excel, del2..
nedanstående graf vill jag exportera till Excel. Så att den ser ut som den gör när den visas på webben.
( "xxxx.asp?type=0" för att visa i excel )
<%
typ= Request.QueryString("type")
if typ = 0 then
Response.ContentType = "application/vnd.ms-excel"
else
Response.ContentType = "text/HTML"
end if
%>
<HTML>
<BODY>
<table width=50% cellpadding=0 cellspacing=0 rules=none>
<tr>
<td colspan=2 align=center style="background: #a18b85; font-family: Arial; font-size: 10; font-weight: bold; border-bottom: 2px Solid #7d7d7d;">
Graf
</td>
</tr>
<TR>
<td align=center style="border-right: 2px Solid black;font-family: Arial; font-size: 10; font-weight: bold; background: #a18b85; color: white;width:150px;">
<DIV width=20px>Status1</DIV>
</td>
<td valign=middle align=left style="font-size: 10; font-family: Arial; background: #a18b85;"><BR>
<span style="border-bottom: 2px Solid black; border-top: 2px Solid black; border-right: none; width: 29; height: 30; background: green;">
<DIV align="right">
</DIV>
</span>
<span style="border-bottom: 2px Solid black; border-top: 2px Solid black; border-right: 2px Solid black; width: 186; height: 30; background: red;;">
<DIV align="right">
</DIV>
</span>
<BR><BR>
</td>
</tr>
<TR>
<td align=center style="border-right: 2px Solid black;font-family: Arial; font-size: 10; font-weight: bold; background: #a18b85; color: #a18b85;width:150px;">
</td>
</tr>
</table>
</BODY>
</HTML>