So in my PageType I have a property like this
[CultureSpecific] [Display( Name = "Heading", Description = "Title, what else?", GroupName = SystemTabNames.Content, Order = 0 )] public virtual XhtmlString Heading { get; set; }
I want to change it from XhtmlString to String, how does that work?
You can do it, but the strings will contain plain HTML tags as well, I believe. Then you'll need to clean them up.
So in my PageType I have a property like this
I want to change it from XhtmlString to String, how does that work?