Skip to Main Content
Customer Feedback

We love feedback from you on our products and the problems in your daily work that you would like us to solve. Please describe the challenge you're encountering and your desired outcome. Be as detailed as possible.

For technical issues or bugs please head to Support or our Developer Community. You can assign up to 20 votes in total. Thank you for your feedback.

Status explanation: 'Future Consideration' = Continuing to collect further feedback, not planned at this time. 'Investigating' = Prioritized for deeper customer and feasibility investigations ahead of planning development.

Categories Technical
Created by Guest
Created on Sep 3, 2024

Saving content model fields with HTML tags should be possible if validateRequest is set to true

As a CMS editor I want to be able to save content model fields, if they containt HTML tags.


<system.web>

<pages validateRequest="true" />

</system.web>


Use content model containing a property where Description contains HTML tag, e.g.:


[CultureSpecific]
[Display(
Name = "Gültigkeitsabfrage Text",
Description = "<ul><li>text</li></ul>",
GroupName = SystemTabNames.Content,
Order = 150)]
public virtual XhtmlString MainBody { get; set; }


The current behavior is that is throws a validation exception due to posting unescaped HTML tag.