integrate turboactivate

how to generate a turbo activate.dat and GUID version for web application using ASP.NET.

Are you talking about adding licensing to a web application? A good place to start is the Getting started with LimeLM article.

we already have a account of Vertex infocomm name in Wyday,and we using a license in our software in window application, now i also want to get in web application also

Create a new product in LimeLM. Then you will be able to download the TurboActivate.dat file for your new product (and get the version GUID as well). Integrating TurboActivate in your ASP.NET app is the same as integrating with regular C# or VB.NET apps. Just include the TurboActivate.cs file in your application project (or TurboActivate.vb file for VB.NET) and begin using the functions.

they gave a coding for C# windows application public Form1() { InitializeComponent();

//TODO: goto the version page at LimeLM and paste this GUID here TurboActivate.VersionGUID = "12940334774cde37e5a28f95.45413553";

isActivated = TurboActivate.IsActivated(); ShowTrial(!isActivated);

// if this app is activated then you can get a feature value // See: http://wyday.com/limelm/help/license-features/ /* if (isActivated) { string featureValue = TurboActivate.GetFeatureValue("your feature name");

//TODO: do something with the featureValue } */ }

I need coding for web application using ASP.NET

The concepts are exactly the same. You check if the user is activated at the start of your program (or the load of a page) and if they're not activated then show the trial functionality. So add TurboActivate.cs to your web app. Set the version GUID:

TurboActivate.VersionGUID = "your guid here";

Then check if the user is activated:

bool isActivated = TurboActivate.IsActivated();

Then take appropriate action if the user is activated or not.