Support,
Below are my .aspx and the .cs file - I run the demo app to draw an eclipse but the screen just shows a box with an x in it. Any help is apprecaited,
-Peter
ASPX file
---------------------------------------------------------------------------------------------------------------------------
<%
<!
<
</
CS file
-----------------------------------------------------------------------------------------------------------------------------------
using
public
{
NDrawingView1.ViewLayout =
NDrawingView1.DocumentPadding =
NDrawingView1.Document.HistoryService.Stop();
NDrawingView1.Document.BeginInit();
NDrawingView1.Document.Bounds =
fs.InnerBorderWidth =
ellipse.Name =
ellipse.Width = 250f;
ellipse.Height = 250f;
ellipse.Center =
ellipse.Style.FillStyle =
NDrawingView1.Document.ActiveLayer.AddChild(ellipse);
NDrawingView1.Document.EndInit();
}
Hi Peter,
It may be related to the axd setting on the servers - you can easily check if this is the case by modifying the image acquisition mode of the control:
1. In the code change the image acquisition:
NDrawingView1.ImageAcquisitionMode = Nevron.UI.WebForm.Controls.ClientSideImageAcquisitionMode.TempFile;
2. Create a directory called NevronTemp in the root folder of your website - for example (C:\Temp\WebSite2\NevronTemp if the web site is located at C:\Temp\WebSite2\).
3. Give this folder read, write, modify permissions to the ASP.NET account.
Hope this helps - let me know if the problem persists.
Best regards,Bob