In this example, the Toolbar on the side can be used for any of the FreeTextBox editors. This utilizes the TargetEditors property of the Toolbar object. The Toolbar can be placed anywhere on the page or allowed to freely float.
Toolbar
FreeTextBox
TargetEditors
<table> <tr> <td> <FTB:FreeTextBox id="FreeTextBox1" width="300px" height="100px" IsToolbarVisible="false" runat="Server" /> <br /> <FTB:FreeTextBox id="FreeTextBox2" width="300px" height="100px" IsToolbarVisible="false" runat="Server" /> <br /> <FTB:FreeTextBox id="FreeTextBox3" width="300px" height="100px" IsToolbarVisible="false" runat="Server" /> </td> <td id="ToolbarTarget" > <FTB:Toolbar ID="Toolbar" TargetEditors="FreeTextBox1,FreeTextBox2,FreeTextBox3" runat="Server"> <FTB:ToolbarGroup Title="Font"> <FTB:ToolbarItem Name="ParagraphMenu" /> <FTB:ToolbarItem Name="FontFacesList" /> <FTB:ToolbarItem Name="break" /> <FTB:ToolbarItem Name="Bold" /> <FTB:ToolbarItem Name="Italic" /> <FTB:ToolbarItem Name="Underline" /> <FTB:ToolbarItem Name="Strikethrough" /> <FTB:ToolbarItem Name="separator" /> <FTB:ToolbarItem Name="Superscript" /> <FTB:ToolbarItem Name="Subscript" /> <FTB:ToolbarItem Name="BulletedList" /> <FTB:ToolbarItem Name="NumberedList" /> <FTB:ToolbarItem Name="Indent" /> <FTB:ToolbarItem Name="Outdent" /> </FTB:ToolbarGroup> <FTB:ToolbarGroup Title="Format"> <FTB:ToolbarItem Name="BulletedList" /> <FTB:ToolbarItem Name="NumberedList" /> <FTB:ToolbarItem Name="Indent" /> <FTB:ToolbarItem Name="Outdent" /> <FTB:ToolbarItem Name="break" /> <FTB:ToolbarItem Name="InsertRule" /> <FTB:ToolbarItem Name="InsertImage" /> <FTB:ToolbarItem Name="CreateLink" /> <FTB:ToolbarItem Name="Unlink" /> </FTB:ToolbarGroup> </FTB:Toolbar> </td> </tr> </table>