Hello,
I have a webform in which I have a component
In my site I have a column that is named argument, improved rich text, and to store information
I do:
SPList listDemand _spweb.Lists = ["myList"];
SPListItem itemDemand listDemand.Items.Add = ();
itemDemand ["argument"] = iftxtArg.Text;
itemDemand.Update ();
According to recover my form in the data argument I pass an ID
and I do:
iftxtArg.Text itemDemand = itemDemand ["Arguments"]. ToString () -> nothing appears,
iftxtArg.Text itemDemand = itemDemand ["Arguments"] as InputFormTextBox;
-> Can not implicitly convert type 'Microsoft.SharePoint.WebControls.InputFormTextBox' to 'String'
iftxtArg.Text itemDemand = itemDemand["Arguments"] as RichTextField;
-> Can not implicitly convert type 'Microsoft.SharePoint.WebControls.RichTextField' to 'string'
Have you an idea ?
thank you