I'd like to display text only summary of the content that was created through the editor with formatting, but no matter what I do, Server.HtmlDecode etc., there are still tags and bits and pieces left in it!! Is there a clean way of doing it? Cheers!
I think that you're looking for is the "Text" property of the RadEditor. According to the tooltip from intellisense it "gets the text content of the RadEditor control without the HTML markup". It's also very easy to get this and assign it to a String variable since all you have to do is call RadEditor1.Text!
Thanks Schlurk - I was using Text property, but my problem was that I was displaying a small summary and was cutting a chunk out before assigning it to Text property, so it was getting summary of content minus closing tags and not doing what I wanted!