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.
1
vote
