i have one publishing portal, my requirement isHow to retrive the data from the Publishing html fieldi have created one site coloumn, field is Full HTML content publishing here my req is.. How to retrive the data from this field.
Try following:Microsoft.SharePoint.Publishing.Fields.HtmlField field = (Microsoft.SharePoint.Publishing.Fields.HtmlField)list.Fields["YOURHTMLFIELDNAME"]; string strText = field.GetFieldValueAsText(list.Fields["YOURHTMLFIELDNAME"]);string strAsHTML = field.GetFieldValueAsHtml(list.Fields["YOURHTMLFIELDNAME"]);