To use licensed controls in an HTML page on a non-licensed computer, you must generate a license package (.lpk) file. The .lpk file contains the run-time licenses for licensed controls in the HTML page. You can use the License Package Authoring Tool (Lpk_tool.exe) to generate this file. To obtain the License Package Authoring Tool, visit the following Microsoft Web site:
Steps to add a control to an HTML page
To embed a licensed control on an HTML page, follow these steps:- Run Lpk_tool.exe on a computer that is licensed to use the control.
- Highlight each licensed ActiveX control that you want to use on the HTML page, and then click Add.
- Click Save & Exit, and then type a name for the LPK file.
- In the HTML page, insert an <OBJECT> tag for the
License Manager object before any other <OBJECT> tags. The License
Manager is an ActiveX control that is installed with Internet Explorer.
Note This CLASSID, "5220cb21-c88d-11cf-b347-00aa00a28331", is for the License Manager and not for your ActiveX controls. You must use the same CLASSID every time you refer to the LPK file. In addition, you should keep the Name property of the <PARAM> tag as "LPKPath", and set the Value property for the <PARAM> tag of the License Manager object to the LPK file name and path. This path may be a relative path but must not refer to a UNC share or a URL on another domain.
Because you can only have one LPK file for each HTML page, make sure that you include all of the licensed ActiveX Controls for the page when you generate your LPK file. For example:<OBJECT CLASSID = "clsid:5220cb21-c88d-11cf-b347-00aa00a28331" VIEWASTEXT> <PARAM NAME="LPKPath" VALUE="relative URL to .LPK file"> </OBJECT>
- Insert the <OBJECT> tag for your licensed control
afterward. For example, an HTML page that displays the Microsoft Masked Edit
control looks like this:
<OBJECT CLASSID="clsid:5220cb21-c88d-11cf-b347-00aa00a28331" VIEWASTEXT> <PARAM NAME="LPKPath" VALUE="maskedit.lpk"> </OBJECT> <OBJECT CLASSID="clsid:C932BA85-4374-101B-A56C-00AA003668DC" WIDTH=100 HEIGHT=25 VIEWASTEXT> </OBJECT>
Troubleshooting
Before you use a licensed control in a Web page, verify the following items:- Verify that you have a redistribution license for the control.
- Verify that the license permits use on the Internet.
- If you supply a CodeBase parameter for the <OBJECT> tag of your ActiveX Control, verify that its use is allowed by your license agreement. Most third parties companies provide a tested version of the .cab files for their controls. Refer to the author documentation for software download instructions.
Note ActiveX controls that come with Microsoft Visual C++ and Microsoft Visual Basic are also licensed controls. Follow the steps above to use them on an HTML page. Microsoft provides a signed version of these .cab files. For more information, see the "References" section.