使用ajax控件工具包中的Editor控件出现奇怪的错误

发布于 2024-10-27 05:57:46 字数 919 浏览 1 评论 0原文

当尝试使用编辑器控件时,我收到以下错误:

    Value cannot be null or empty.
    Parameter name: elementID

这是我的 HTML:

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

<!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></title>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <div>
        <cc1:Editor ID="Editor1" runat="server" />
    </div>
    </form>
</body>
</html>

我正在使用 asp.net 4 和版本 4 的 ajax 控制工具包。

我相信错误正在谈论我的路由。如果我想使用工具包和自定义路由,我需要做什么特殊的事情吗?

When trying to use the editor control i'm getting the following error:

    Value cannot be null or empty.
    Parameter name: elementID

Here's my HTML:

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

<!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></title>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <div>
        <cc1:Editor ID="Editor1" runat="server" />
    </div>
    </form>
</body>
</html>

I'm using asp.net 4 with ajax control toolkit for version 4.

I believe the error is talking about the routing I have. Is there something special I have to do if I want to use the toolkit and custom routing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鲸落 2024-11-03 05:57:46

问题是我告诉框架不要重写我的控件 ID。在 web.config 中,我将 clientId 模式设置为静态而不是预测。

The problem was that I was telling the framework to not rewrite my control Id's. In web.config I had the clientId mode set to static instead of predictive.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文