Unknown server tag “ajaxToolkit:HtmlEditorExtender”

后端 未结 2 1654
孤城傲影
孤城傲影 2021-01-14 16:57

I am using ajaxcontrols and in that all controls are working well But I had not found any of the control named as HtmlEditorExtender so I had just copied this tag in .html p

2条回答
  •  感情败类
    2021-01-14 17:09

    Try using ScriptManager instead of ToolkitScriptManager.

    In my project, i'm also working with Editor control (ajax toolkit control) instead of HtmlEditorExtender. A Editor control do the same as the HtmlEditorExtender and you can have three panels Design Mode, HTML Mode and Preview Mode.

    If you want to use Editor control instead just add the following register:

    <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit.HTMLEditor"    TagPrefix="asp" %>
    

    Hope it helps.

提交回复
热议问题