LimeLM & TurboActivate for web application

Hai sir,

Am Already used LimeLM for window application, now we want to use web application for use LimeLM, we all the three file included in web application bin --> debug folder (TurboActivate.dll,TurboActivate.dat,TurboActivate.exe ) next in window for steps only give ...how to use web applications..

We don't have a pre-built example showing how to do this. However it's rather simple. If you're making an ASP.NET C# app, the include the TurboActivate.cs file in your project. Then make sure the TurboActivate.dll and TurboActivate.dat file are in the same folder as your compiled output for the ASP.NET application.

Then use the TurboActivate functions as appropriate.

Hai sir,create one web application for C# coding. that Application include the TurboActivate.cs file and create the bin folder that folder include the TurboActivate.dll, TurboActivate.exe, TurboActivate.dat this three file. next what i do please help me. how to write coding for web form.

Look at the C# example app included in the TurboActivate pack (get it on your API page).

To check if you're activated is as simple as this:

if (TurboActivate.IsActivated()){    // TODO: let the user use your web app.}