• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

Issue Ajax toolkit with ASP.Net rendering issue

AndyF

New Pleskian
I am having trouble getting graphs drawn using the Ajax toolkit under ASP.Net to render properly on GoDaddy, though they work fine on my developer machine.

On my developer machine the graphs render as expected like this:
Developer machine graph display

On GoDaddy the graphs render like this:
GoDaddy graph display

It's the same software on both machines. The toolkit is that latest version, downloaded from DevExpress and placed on the same directory as my binary files. The Ajax toolkit Properties show: File/Product version: 18.1.0.0 with a size of 5357 kb.

In Plesk the Trust Level is set to full. Windows Server 2019 Standard is installed on GoDaddy. The rest of the website, database access etc. works as expected.

The aspx page that draws the graph has the toolkit registered and a script manager on it:

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="AjaxToolkit" %>
<asp:ScriptManager ID="ScriptManager1" runat="server" />

The mark-up to render the graph looks like this:

<div id="LineChartDiv" runat="server" >
<table width="100%" border="0">
<tr>
<td width="15%">&nbsp;</td>
<td align="center">

<ajaxToolkit:LineChart ID="LineChart1" runat="server"
ChartWidth="1000" ChartHeight="500" ChartType="Basic"
ChartTitleColor="#0E426C" CategoryAxisLineColor="#D08AD9"
ValueAxisLineColor="#D08AD9" BaseLineColor="#A156AB">
</ajaxToolkit:LineChart>

</td>
<td width="15%">&nbsp;</td>
</tr>
</table>
</div>

The data for the graph is loaded from the code behind. I can see by logging on both machines that it is adding 8 points to the graph.

Any ideas anyone how to make the graph render properly?
 
Back
Top