Jump to content
Software FX Community

ASP Samples


User (Legacy)

Recommended Posts

Question:

All the samples in the Chart FX Programmer's Guide call the GetHtmlTag

method as follows:

<%

Set Chart1 = yada, yada, yada

Chart1.Gallery = LINES

..... more code

%>

<% = Chart1.GetHtmlTag("90%", "90%") %>

Instead of having this cause IIS to context switch, shouldn't it be done

as this:

<%

Set Chart1 = yada, yada, yada

Chart1.Gallery = LINES

........ more code

Response.Write Chart1.GetHtmlTag("90%", "90%")

%>

?

Just curious,

Thanks!

David

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...