Hi,
We just got our new Aspose.Total.lic file. I am using Aspose.Words in my .NET application. Before we got our license, I downloaded the temporary Aspose.Words.dll and used it in my application. The result is that I got the "Evaluation copy" in my Words document which was ok until we got the license. I applied the license this morning and the result is bad. I uploaded 2 output files here for you to see.
And here is the code:
string licenseFile = (Server.MapPath("~/bin/Aspose.Total.lic"));
if (File.Exists(licenseFile))
{
//This shows how to license Aspose.Words, if you don't specify a license,
//Aspose.Words works in evaluation mode.
Aspose.Words.License license = new Aspose.Words.License();
license.SetLicense(licenseFile);
}
btw, i got the code from your web site.
Please advise.
Thank you