We have an event receiver that gets called on ItemAdded of a list. This list implements the RadEditor on a 'Body' field. When the code grabs the value of this field, is contains the entire markup instead of just the text which the user has entered in the editor. How do we just get the text and not the HTML?
public
override
void
ItemAdded(SPItemEventProperties properties)
{
SPListItem postItem = properties.ListItem;
string body = postItem["Body"]; //This returns all markup - we only want the user entered text from radeditor
}