I am inserting items into a Sharepoint list using C# and accessing the lists.asmx web service. One of the fields in the list is a multiple line text field (rich text), and I want to insert line breaks into the field. What characters do I put in the XML request to insert a line break? Thanks.
+1
A:
You can add <br />
tags to the text. the content of the field is stored in a CDATA element.
Colin
2009-08-28 00:04:15
+1. Should just be HTML that you can update.
Kit Menke
2009-08-28 17:49:26