I have attempted to follow the directions but i am getting the following error
Code:Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[NullReferenceException: Object reference not set to an instance of an object.]
Aurigma.PhotoEditor.Editor.CreateThumbnail() in C:\Inetpub\wwwroot\sources\PhotoEditor\Editor.ascx.vb:186
Aurigma.PhotoEditor.Editor.OnPreRender(EventArgs e) in C:\Inetpub\wwwroot\sources\PhotoEditor\Editor.ascx.vb:396
System.Web.UI.Control.PreRenderRecursiveInternal() +77
System.Web.UI.Control.PreRenderRecursiveInternal() +161
System.Web.UI.Control.PreRenderRecursiveInternal() +161
System.Web.UI.Control.PreRenderRecursiveInternal() +161
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1360
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.91; ASP.NET Version:2.0.50727.210
here is the code behind i am using in my c# project
Code:
Editor objEditor = (Editor) pnlUploadPhoto.FindControl ("Editor1");
objEditor.MediumQualityDpi = 300;
objEditor.OriginalPath = Server.MapPath("photoeditor/images/redeye.jpg");
Editor.BitmapManager = new DefaultBitmapManager();
objEditor.InitializationData = "border=simple,white";
objEditor.DebugMode = true;
objEditor.RedirectUrl = "http:
objEditor.TitleHtml = "<a href='javascript:alert('example')'>PhotoEditor Title</a>";
this is running on .net framework 2.0.
Does anybody know what is wrong.