Hello,
I have a webform in which I have a component
<Sharepoint:InputFormTextBox ID="iftxtArg" RichText="true" RichTextMode="FullHtml" runat="server" TextMode="MultiLine" Rows="20" Font-Size="12px" />
In my site I have a column that is named argument, improved rich text, and to store information
I do:
SPList listDemand _spweb.Lists = ;
SPListItem itemDemand listDemand.Items.Add = ();
itemDemand = iftxtArg.Text;
itemDemand.Update ();
According to recover my form in the data [...]