I have just downloaded and unzipped the files. Before i start explaining the problem just wanted mention here that doc files supplied does not help at all. I never got aspx pages inside the doc folder to run. They keep throwing errors.
Now here is my problem
I have added the dll reference to bin folder from ASP.NET/2.0 folder. Registered the assembly and use the control. but when i run the application, the control only show Textbox without toolbox at the top.
here is how my page code look
<%
@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WYSIWYG.WebForm1" %>
<%
@ Register TagPrefix="FTB" Namespace="Refresh.Web" Assembly="Refresh.Web.FreeTextBox" %>
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml" >
<
head runat="server">
<title>Untitled Page</title>
</
head>
<
body>
<form id="form1" runat="server">
<FTB:FreeTextBox ID="FreeTextBox1" runat="SErver" Height="500px" IsFullDocument="true"
Theme="office12" Width="900px">
<FTB:ToolbarGroup Title="Font" >
<FTB:ToolbarItem Name="ParagraphMenu" />
<FTB:ToolbarItem Name="FontFacesList" />
<FTB:ToolbarItem Name="FontSizesList" />
<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="separator" />
<FTB:ToolbarItem Name="FontForeColorPicker" />
<FTB:ToolbarItem Name="FontBackColorPicker" />
</FTB:ToolbarGroup>
</FTB:FreeTextBox>
</form>
</
body>
</
html>