Saving Rich Text to Database

  • Thread starter Thread starter Abhi
  • Start date Start date
A

Abhi

How do i save text in a RichTextBox Control to a SQL
server Database and retrive it back without losing its
formatting.
 
Save 'RichTextBox.Rtf ' into the DB and when retrieving, set the Rtf
property of the RTB.

Thanks,
VijayaKrishna P.
 
* "Abhi said:
How do i save text in a RichTextBox Control to a SQL
server Database and retrive it back without losing its
formatting.

Save the contents of the control's 'Rtf' property. This property will
contain the RTF code representing the document displayed in the control.
 
Back
Top