Guest_imported
New member
- Jan 1, 1970
- 0
I need to generate some charts on our corporate intranet with CF,, the data is in our MS SQL Server. Anyone got a clue on how I can do this??
-Mike
-Mike
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<CFQUERY NAME="Sales" DATASOURCE="HanengCharts">
SELECT * FROM Chart
</CFQUERY>
<HTML>
<BODY>
<CENTER>
<APPLET CODE="HanengCharts_PRO_1.class" WIDTH=460 HEIGHT=260 ALIGN=top>
<CFLOOP QUERY="Sales">
<CFOUTPUT>"<</CFOUTPUT><CFOUTPUT>PARAM NAME="#ParameterName#" VALUE="#Value#"</CFOUTPUT><CFOUTPUT>"></CFOUTPUT>
</CFLOOP>
</APPLET>
</CENTER>
</BODY>
</HTML>