Hi,
I am using "RadEditor.Net2" with version v2.0.50727.
How to add Rad Editor in Share Point web part (MOSS 2007 & WSS 3.0)
I have written a simple code like :
I am using "RadEditor.Net2" with version v2.0.50727.
How to add Rad Editor in Share Point web part (MOSS 2007 & WSS 3.0)
I have written a simple code like :
[Guid("1818f2ae-658a-44ca-9907-96e6dbcdc518")]
public class ImageEdiorWebPart : System.Web.UI.WebControls.WebParts.WebPart
{
RadEditor editor;
public ImageEdiorWebPart()
{
}
protected override void Render(HtmlTextWriter writer)
{
base.Render(writer);
}
protected override void CreateChildControls()
{
base.CreateChildControls();
editor = new RadEditor();
editor.ID = "RadEditor1";
this.Controls.Add(editor);
}
}
But throws a error : File not found.
Thanks
Savan