When I insert information into the tinyMCE component and click on any button that submits the form, it has generated the error.
JavaScript run-time error: Sys.WebForms.PageRequestManagerServerErrorException: An error has occurred when processing the request on the server. The status returned from server was: 500
It seems to me that Asp.net is barring the component's HTML. I'm already using the ValidateRequest="false" .
My code
<%@ Page UICulture="auto" ValidateRequest="false" Culture="auto" Language="C#" MasterPageFile="~/ius/MasterPage.master"
AutoEventWireup="true" CodeFile="CadastroNormas.aspx.cs" Inherits="CadastroNormas"
Title="Cadastro de Normas" AsyncTimeout="600" %>
<asp:UpdatePanel ID="upnlArquivos" runat="server" UpdateMode="Conditional" ChildrenAsTriggers="false">
<ContentTemplate>
<span class="txtCampo">Texto da Norma:</span><br />
<asp:TextBox ID="Spaw2" runat="server" TextMode="MultiLine" Rows="100"
Columns="100"></asp:TextBox>
<br />
<br />
</ContentTemplate>
</asp:UpdatePanel>
tinyMCE.init(
{
mode: "specific_textareas",
editor_selector: "mceEditor",
height: "400",
theme: "modern",
entity_encoding: "raw",
content_css: "../estilo.css",
//Hacks para manter a formatação vinda do word
forced_root_block: false,
paste_auto_cleanup_on_paste: false,
paste_text_use_dialog: true,
paste_force_cleanup_paste: false,
paste_remove_spans: false,
paste_retain_style_properties: "margin, padding, width, height, font-size, font-weight, font-family, color, text-align, ul, ol, li, text-decoration, border, background, float, display"
});