Hi,
I want to know, is it still possiable to purchase Aspose.Editor?
Actually we are planning to purchase Aspose.Total License and want to make sure that it will support Aspose.Editor.
Thanks
Siraj
Hi Siraj,
Aspose.Editor for .NET has been discontinued. It will not be sold anymore and will not be included in Aspose.Total. For more details please see Discontinued Products.
Please feel free to contact us in case you have further comments or questions.
Thank you for contacting support and have a nice day.
Thanks for the reply.
We are using evaluation version of an Aspose.Editor and I want to purchase that.
So can I purchase that OLD Aspose.Editor through Aspose.Total?
Thanks
Siraj
Hi Siraj,
Thank you for your reply, and diligence in trying to find a workable solution. You are correct; if you purchased Aspose.Total the license would indeed work with the evaluation version of Aspose.Editor that you currently have. However, I should clarify once more that the product has indeed been discontinued and all new development efforts halted. Please do not purchase under the mistaken assumption that development may resume in the future; we feel certain that will not happen.
If you are comfortable with the above fact we welcome you to proceed as you wish. Please be sure to let me know if there are any other details that I can provide and I will be more than glad to assist.
My department has purchased ASPOSE Total and ASPOSE Editor has been built into one of our major applications. The discontinuation of the product support can introduce issues for our on-going support. Could we request for a copy of the ASPOSE Editor source code? The cose of switching to another suppored editor is significant in our case.
Hi,
Sorry, we have not yet decided to publish the source code of Aspose.Editor. We may or may not do it. However, whenever it will be done in future, we will let you know.
Hi,
Iam facing one problem with Aspose.Editor.
In most of the case it opens very well, but some time it shows following error
Please suggest how to overcome this problem.
Please find the attachment and source code
Thanks
Siraj
Thanks Michael,
Basically, In my ASP.Net Application I am trying to open a Word Document which resides on server based on user selection.
Most of the time, Editor is able to open that doc pretty fine, but some time it gives Javascript error.
I already attached the my source code(both .aspx and .vb file)
When I get that Javascript error, at that time if I clicked outside the editor and press F5[REFRESH the page], then that javascript error will be gone[EDITOR will load the document properly].
It 's quite trival
Please Suggest.
Thanks
Hello,
I think the problem occures in
var ServerUrl = '<%=Page.Request.Url.AbsoluteUri%>';
Insted of Page.Request.Url.AbsoluteUri use
string filePath = Server.MapPath("SomePage.aspx");
or
string absolutePath = Request.Url.AbsolutePath;
string url = Request.Url.AbsoluteUri;
url = url.Replace(absolutePath, Page.ResolveUrl("~/SomeServices/SomePage.aspx"));