When I load an RTF file its is rendered as plain text, showing all the formatting commands. How do I load a RTF File which will display the formatting?
this is the code I am using.
if (IsPostBack) { Editor1.SaveFile("TestCute.rtf"); }
else { Editor1.LoadRTF("TestCute.rtf"); }
Thanks