I have found the control that is causing the problem, but I HAVE to have this working and shortly.
I have an Editor on a modal pop-up form the Miscorsoft Ajax libary, as soon as I took off the code below I did not recieve the error any more.
How can I make this control work on a Modal Popup?
Please advise.
Adam
P.S. The quick reply button on this forum is very close to what I am trying to do.
Below is the code for the modal pop-up:
<asp:Panel ID="Panel1" runat="server" Style="display: none" CssClass="modalPopup" Width="750">
<asp:Panel ID="Panel3" runat="server" Style="cursor: move;background-color:#DDDDDD;border:solid 1px Gray;color:Black">
<div class="modalHeader">
<p runat="server" id="modalHeader">Edit Article Description:</p>
</div>
</asp:Panel>
<div style="background-color:#E6E6E5;">
<CE:EDITOR id="modalEditor" runat="server"
Width="100%"
Height="550px"
ShowEnlargeButton="False"
ShowDecreaseButton="False"
RenderRichDropDown="False"
ActiveTab="Edit"
ConfigurationPath="~/CuteSoft_Client/CuteEditor/Configuration/AutoConfigure/EBVMMin.config"
AutoConfigure="None"
ThemeType="Office2003_BlueTheme"
EditorWysiwygModeCss="~/example.css">
<FrameStyle BackColor="White" BorderColor="#DDDDDD" BorderStyle="Solid" BorderWidth="1px"
CssClass="CuteEditorFrame" Height="100%" Width="100%" />
</CE:EDITOR>
<p class="modalHeader">
<asp:Button CssClass="button" ID="cmdSaveEdit" runat="server" Text="save" />
<asp:Button CssClass="button" ID="cmdCancelEdit" runat="server" Text="Cancel" />
</p>
</div>
</asp:Panel>
<ajaxToolkit:ModalPopupExtender ID="ModalPopupExtender" runat="server"
TargetControlID="txtEditorName"
PopupControlID="Panel1"
BackgroundCssClass="modalBackground"
OkControlID="cmdSaveEdit"
OnOkScript="SaveModalEdit()"
CancelControlID="cmdCancelEdit"
DropShadow="true"
BehaviorID="ModalBehaviorhandle"
PopupDragHandleControlID="Panel3" />