Hello,
We have started getting the error "The state information is invalid for this page and might be corrupted." on one of our forms that use a RadEditor control. We are using VS 2008 with RadControls for ASP.Net AJAX Q2 2009 version 2009.2.701.20. This pretty much just started happening out of no where.
We have narowed it down to formatting like bolding or underling any text it causes the error. If there is no formatting there is no error.
I have done some searching on Google and tried the following with no luck:
set pages maxPageStateFieldLength="10000" in web.config file
@ Page Language="c#" EnableViewStateMAC="false" EnableViewState="true" ...
tried replacing the control with a new one
Here is the aspx code: pretty basic
| <telerik:radeditor runat="server" ID="txtContent" Width="100%" EditModes="Design, Preview" ToolsFile="~/App_Data/RadEditor/BasicToolbar.xml" > |
| <Modules> |
| <telerik:EditorModule Name="RadEditorDomInspector" Visible="true" Enabled="true" /> |
| </Modules> |
| </telerik:radeditor> |
Also, here is our BasicToolbar.xml file:
| <?xml version="1.0" encoding="utf-8" ?> |
| <root> |
| <tools name="MainToolbar" dockable="false" enabled="true"> |
| <tool name="AjaxSpellCheck" /> |
| <tool name="Print" /> |
| <tool name="FindAndReplace" /> |
| <tool separator="true"/> |
| <tool name="Cut" /> |
| <tool name="Copy" /> |
| <tool name="Bold" /> |
| <tool name="Italic" /> |
| <tool name="Underline" /> |
| <tool name="Paste" /> |
| <tool name="PasteFromWord" /> |
| <tool name="PastePlainText" /> |
| <tool name="PasteAsHtml" /> |
| <tool name="FormatStripper" /> |
| <tool separator="true"/> |
| <tool name="Undo" /> |
| <tool name="Redo" /> |
| </tools> |
| </root> |
If anyone has any idea why we are experiecing this your help would be greatly appreciated.
