Hi,
I have a page, where there is 3 radeditor controls along with other form elements (e.g. textbox, combobox etc). My requirement is, I need to 'extract' the RTF from these 3 controls and store it in the database. I have looked up different posts regarding this, but all the sample applications that was posted was using the method to use Response.Redirect (to stop the Save Dialog popto to open), after I call the ExportToRtf() method. But, I wont be able to get the RTF content of all the RadEditors after the 1st Response.Redirect (also, my view state will be lost along with all the data that was eneted by the user in the form elements).
I have also tried putting OpenInNewWindow = "false", but this doesnt seem to work (my control def is given below).
I have a page, where there is 3 radeditor controls along with other form elements (e.g. textbox, combobox etc). My requirement is, I need to 'extract' the RTF from these 3 controls and store it in the database. I have looked up different posts regarding this, but all the sample applications that was posted was using the method to use Response.Redirect (to stop the Save Dialog popto to open), after I call the ExportToRtf() method. But, I wont be able to get the RTF content of all the RadEditors after the 1st Response.Redirect (also, my view state will be lost along with all the data that was eneted by the user in the form elements).
I have also tried putting OpenInNewWindow = "false", but this doesnt seem to work (my control def is given below).
<
telerik:RadEditor ID="txtAfterChange" Width="250" Height="150" ToolsFile="~/Script/ToolsFile.xml"
ToolsWidth="330px" runat="server" EditModes="Design" ToolbarMode="ShowOnFocus">
<ExportSettings OpenInNewWindow="false">
</ExportSettings>
</telerik:RadEditor>
Is there any alternative, or any resolution to my problem? Please help me !
Regards,
Bhaskar