JanNortje

Members
  • Content count

    5
  • Joined

  • Last visited

About JanNortje

  • Rank
    Forum Newbie
  1. Not Working Iis7 Server 2008 R2

    There is no error. It just doesnt want to render the chart, as you can see I use the Javascript method. I am using a 64 bit browser, although this is my development machine and all works 100%, uploading it to my webserver 2008r2 64bit it just doesnt render. I have enabled allow 32bit as well no difference.
  2. Not Working Iis7 Server 2008 R2

    I Still havent been abloe to resolve my Issue with server 2008 r2, kind of given up on it as it all works 100% on the development machine VS2010 but the chart refuses to render on the IIS7 server
  3. Not Working Iis7 Server 2008 R2

    Anybody any ideas, still havent been abled to resolve this
  4. Not Working Iis7 Server 2008 R2

    Hi There I have tried both with 32bit enabled true and false. The site is running .net4 on the iis. It is a 64bit server
  5. Hi There On my production machine VS2010 all is working 100% copying to my IIS7 windows server 2008 r2 machine the chart refuses to display I will include my source code if this helps. In the head section of my master File I have: <script language="JavaScript" src="js/FusionCharts.js"></script> this is correct as i have other js files also referenced here and they work. In my actual rendering document which is all in vb and using a scriptmanager and updatepanel for ajax here is some code i use. <div id="chartdiv" align="center" style="width:100%"> </div>   <asp:HiddenField ID="HiddenField_xml" runat="server" /> <script type="text/javascript"> function do_grph() { var xmlss = document.getElementById("ctl00$ContentPlaceHolder1$TabContainer1$TabPanel6$HiddenField_xml").value; var chart = new FusionCharts("Pie3D.swf", "ChartId", "600", "600", "0", "0"); chart.setDataXML(xmlss) chart.render("chartdiv"); } do_grph(); </script> This all works 100% in development, the last line do_grph() has been put in for debugging but still nothing renders , any Ideas please help