使用ajax控件工具包中的Editor控件出现奇怪的错误
当尝试使用编辑器控件时,我收到以下错误:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是我告诉框架不要重写我的控件 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.