PUrchased the software

I have purchased the software(Aspose.cells), But where should I download the .dll file.
And how to contact for the technical support.


Hi,

Thanks for considering Aspose.

Please download the component's installer (latest version) @: http://www.aspose.com/community/files/51/file-format-components/aspose.cells/default.aspx When you setup the msi installer, it will install/copy the Aspose.Cells.dll file(s) to your $InstallDir$.

To know about the APIs and their usage, kindly read the documentation: http://www.aspose.com/documentation/file-format-components/aspose.cells-for-.net-and-java/index.html

Also, you may check the demos(the demo solutions are also installed automatically on your system when you install its .msi installer, so you may open the demo solutions into VS.NET and check the source codes.):\

If you need technical help, please use Aspose.Cells forum (this forum) to contact us anytime, we will be happy to help you soon.

Thank you.

I really didn’t understand the reply.
If I download the component’s installer and setup the msi installer, it will copy the aspose.cells.dll file. Which is what exactly I did with evaluation version but now I need the full version and I have paid $600.00 for that. And now I don’t know where to donwload the full version Aspose.Cells.dll file.
the link that you sent me is not full version I guess. (correct me if I am wrong)

Let me explain what I did with the version.
I have downloaded the installer and setup the msi file and got the aspose.cells.dll file.
I have placed it in bin folder of my project and in my .aspx file I import aspose.cells namespace and everything works perfect.

Now that I purchased the full version what should I do.
Will placing the dll file and the license file in the same bin folder works perfect?

Hi,

Well, we recommend you should download the latest hotfix @: http://www.aspose.com/community/files/51/file-format-components/aspose.cells/entry145662.aspx and install it.

I think you did fine. Please make sure that you follow the steps given:

http://www.aspose.com/documentation/file-format-components/aspose.cells-for-.net-and-java/installing-aspose-cells-for-net.html

http://www.aspose.com/documentation/file-format-components/aspose.cells-for-.net-and-java/referencing-aspose-cells-from-a-net-project.html

For licensing (how to set the license file in different ways), please check the doc topic for your reference:

http://www.aspose.com/documentation/file-format-components/aspose.cells-for-.net-and-java/licensing.html

Kindly let us know if you have further queries, we will be glad to help you asap.

Thank you.

OK, what I assume is place the dll file and lic file in bin folder import aspose.cells namespace in .aspx file and in pageload event set the license to aspose.cells. But if I want to use aspose.cells in 10 .aspx files do I need to do the same in the 10 .aspx files?(I am not using VS.Net)
There are two ways of setting up license

  • File or Stream
  • Embedded resource.
So using File or Stream method I have to placed the below code in 10 .aspx files if I want to use it in 10 files. right?

Dim license As Aspose.Cells.License = New Aspose.Cells.License()


license.SetLicense(“Aspose.Cells.lic”)





Hi,

Well, No, you don't need to do that in each .aspx page in your project, you may use Application_Start / Session_Start event or some other events in the Global.asax file and write the licesing code there only one time.

Thank you.