I am building a Silverlight application that interacts with SharePoint through Managed Client Object Model. One of the functionalities of the app is to update a list item field with rich text content.
I don't know how to pass rich text content to SharePoint. HTML styling doesn't work because SharePoint adds the content literally.
For example, I want to write
SharePoint isawesome.
but the following doesn't work:
SharePoint <b>is</b> <i>awesome</i>.
Please help. Thanks.