0

Can anyone recommend an HTML editor for ASP.NET?

I'm not talking about a WYSIWYG editor, but one that will highlight elements and attributes like the Umbraco or other content management systems do.

So as someone is typing HTML it will highlight certain items to make it more readable.

2

4 Answers 4

1

Syntax hightlighting? I find CodeMirror to be fantastic. It transforms a textarea

Sign up to request clarification or add additional context in comments.

Comments

1

May be you should try obout html editor. I am using it in my applications and they work like a charm.

Obout.Ajax.UI Controls - HTML Editor - Editor control

Comments

0

I use MarkdownDeep if that helps at all?

Comments

0

ajaxToolkit:HtmlEditorExtender is best for this.

 <ajaxToolkit:HtmlEditorExtender ID="HtmlEditorExtender1" 
        TargetControlID="TextBox1" runat="server"/>
        <Toolbar> 
            <ajaxToolkit:Undo />
            <ajaxToolkit:Redo />
            <ajaxToolkit:Bold />
            <ajaxToolkit:Italic />
            <ajaxToolkit:CreateLink />
            <ajaxToolkit:UnLink />
            <ajaxToolkit:RemoveFormat />
            <ajaxToolkit:SelectAll />
            <ajaxToolkit:UnSelect />
            <ajaxToolkit:Delete />
            <ajaxToolkit:Cut />
            <ajaxToolkit:Copy />
            <ajaxToolkit:Paste />
        </Toolbar>
    </ajaxToolkit:HtmlEditorExtender>

visit here for Demo: HtmlEditorExtender Demo

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.