我正在使用Visual Studio 2013和asp .net AJAX Control Toolkit中的一些控件。
使用ComboBox并正常工作。以下是ComboBox控件的示例,它运行良好。
<div>
<asp:Label ID="Label1" runat="server" Text="Combo Box: "></asp:Label>
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<ccl:ComboBox ID="ComboBox1" runat="server"></ccl:ComboBox>
</div>
但是当我使用“ColorPickerExtender”时,我收到一个运行时javascipt错误,我没有找到任何方法来摆脱并使这项工作
以下是我正在尝试的ToolPicker示例
<div>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Button" />
<ccl:ColorPickerExtender ID="ColorPickerExtender1" runat="server" TargetControlID="TextBox1" PopupButtonID="Button1" SampleControlID="Button1"></ccl:ColorPickerExtender>
</div>
以下是我收到的Runtime javacript错误中的屏幕截图。
如果有人知道我为什么会这样做并摆脱它会很棒。感谢