Once you have obtained a license key for ActivEdit you need to let the Applet know about it, this is done with the appletlicense attribute or property. Here are some examples:
ColdFusion:
<cf_activedit appletlicense="123" ...> ... </cf_activedit>
ASP:
aeObject.AppletLicense = "123"
JSP:
<ae:activedit appletlicense="123" ...> ... </ae:activedit>
PHP:
aeObject->["appletlicense"] = "123";
ASP.NET:
<ae:ActivEdit appletlicense="123" ...> ... </ae:ActivEdit>
Note: You can pass in more than one license key by seperating each key with a comma (no spaces), for example:
appletlicense="123,4567"