• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • (Plesk for Windows):
    MySQL Connector/ODBC 3.51, 5.1, and 5.3 are no longer shipped with Plesk because they have reached end of life. MariaDB Connector/ODBC 64-bit 3.2.4 is now used instead.
  • Our UX team believes in the in the power of direct feedback and would like to invite you to participate in interviews, tests, and surveys.
    To stay in the loop and never miss an opportunity to share your thoughts, please subscribe to our UX research program. If you were previously part of the Plesk UX research program, please re-subscribe to continue receiving our invitations.
  • 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