AjaxControlToolkit namespace problem.

A

André Freitas

Im using AjaxControlToolkit HTML Editor, and following the documentation, i
got the code:

Webconfig:

<assemblies>
<add assembly="AjaxControlToolkit"/>
</assemblies>

<pages>
<controls>
<add tagPrefix="asp" namespace="AjaxControlToolkit.HTMLEditor"
assembly="AjaxControlToolkit"/>
</controls>
</pages>

AnyName.cs

using AjaxControlToolkit.HTMLEditor;
namespace MyControl
{
public class SimpleEditor : Editor
{
protected override void FillTopToolbar()
{
TopToolbar.Buttons.Add(new
AjaxControlToolkit.HTMLEditor.ToolbarButton.Bold());
TopToolbar.Buttons.Add(new
AjaxControlToolkit.HTMLEditor.ToolbarButton.Italic());
}

protected override void FillBottomToolbar()
{
BottomToolbar.Buttons.Add(new
AjaxControlToolkit.HTMLEditor.ToolbarButton.DesignMode());
BottomToolbar.Buttons.Add(new
AjaxControlToolkit.HTMLEditor.ToolbarButton.PreviewMode());
}
}
}

Test.aspx

I got the line <%@ Register namespace="MyControls" tagprefix="custom" %>
at the top of my aspx, but i cant find the reference to get a new instance
of the object.

What am i doing wrong?

Regards
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top