To embed an ASP.NET User Control in Composite, simply copy the .ascx file to the web folder /UserControls and write the following in a template, page or plug-in output:
$$USERCONTROL( Path=<path to .ascx file> );
The path to the .ascx file should be relative to the /UserControls folder. Only .ascx files placed in this folder (or sub folders) can be executed by Composite.
Examples:
If you specify additional parameters they get appended to the User Controls Attribute collection.
To deploy an ASP.NET User Controls in Composite just copy the .ascx file to the /UserControls folder. If your User Control require .NET assemblies (DLLs) simply copy them to the /bin folder, as you normally would.