Duke_Quakem Report post Posted December 27, 2007 Hi, i'm kinda new and i'm tryin' to use a chart in a website made in C# (VS.NET 2005 Professional). I read the docs and searched the net but i can't get FusionCharts movin'. I upload the .dll, .swf and the .js to the project, I modified the .aspx just like the first basic example and upgraded the Flash Player but I still get a white page. Here's a pic of the solution tree: and the code of the Default.aspx: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <%@ Import Namespace="InfoSoftGlobal" %> !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> html xmlns="http://www.w3.org/1999/xhtml" > head runat="server"> title>Ejemplo FusionCharts/title> /head> body> <% //Create the chart - Column 3D Chart with data from Data/Data.xml Response.Write(FusionCharts.RenderChartHTML("../FusionCharts/Column3D.swf", "../Data/Data.xml", "", "myFirst", "600", "300", false)); %> /body> /html> I haven't added any other code since I'm still tryin' to make the first basic example. Hope you can help me to find out what I'm missin' PS: I erased some of the < symbols cause the [ code ] [ /code] IFCode didn't work... Share this post Link to post Share on other sites
FusionCharts Support Report post Posted December 28, 2007 Hi, IT seem that there is a problem in the path you are using : ../FusionCharts/Column3D.swf ../Data/Data.xml According to your snaphot of the Folder structure, these must be : FusionCharts/Column3D.swf Data/Data.xml Share this post Link to post Share on other sites
FusionCharts Support Report post Posted December 28, 2007 (edited) Hi, You can upgrade to the latest minor release 3.0.5 which contain more ASP.NET 2.0 samples and a new assembly FusionCharts.dll with new features. Edited December 28, 2007 by Guest Share this post Link to post Share on other sites
Duke_Quakem Report post Posted December 28, 2007 I made the changes and it works, THX Share this post Link to post Share on other sites