Jump to content
Software FX Community

RE: ASP Samples


Software FX

Recommended Posts

This link to an ASP tutorial on the web explains this.

http://www.west-wind.com/presentations/aspobjects/ASPObjects.htm

IMPORTANT NOTE:

In an effort to provide the most advanced solutions in conjunction with

the most comprehensive technical support structure, Software FX will

implement a Paid-Support Program beginning January 1, 2001 for all

existing and future Software FX application users. The specific details

of the Paid-Support Program will be released in an upcoming broadcast

e-mail, as well as on our website. Please be aware that the online

technical support web site at http://support.softwarefx.com will continue

to be available without charge.

Justin Trask

Software FX

Please reply to: cfxie@softwarefx.com

-----Original Message-----

From: David Golus [mailto:djgolus@zdnetonebox.com]

Posted At: Monday, January 08, 2001 2:28 PM

Posted To: Server

Conversation: ASP Samples

Subject: ASP Samples

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...