Hello,
I have this problem using RTE in ASp.NET WEB FORMS: every time I save the content of RTE or other reasons I refresh the page, I get "potentially dangerous Request.Form value was detected from the client.,,,"
I have already tried these implementations
added to web.config
<system.web>
<httpRuntime requestValidationMode="2.0" />
<compilation debug="true" strict="false" explicit="true" targetFramework="4.7">
<assemblies>
<add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
</assemblies>
</compilation>
<pages validateRequest="false" controlRenderingCompatibilityVersion="4.0" enableEventValidation="false">
........
added on both master page and page "<%@ Page Title="" Language="vb" .....ValidateRequest="false"
but i don't get any results, always the same problem.
This is my XAML code:
.....
<tr>
<td> </td>
<td colspan="2">
<ej:RTE ID="RTE1" Name="rteManualMail" runat="server">
</ej:RTE>
</td>
</tr>
<tr>
<td> </td>
<td colspan="2" style="text-align: center">
<ej:Button ID="btnSendManualEmail" runat="server" ContentType="TextOnly" Size="Medium" Text="INVIA MAIL AI CONCORRENTI" Width="200">
</ej:Button>
</td>
</tr>
</table>
Thanks a lot for your attention