In client side, WebTextEditor provides SaveContent method which has a parameter to invoke save operation. The parameter is sectionName(string).
Note that SaveContent does not save the content to a file in the client-side due to security permission. Instead, it invokes Save server-side event through FlyPostback (AJAX) where developers can implement their own saving logic in the server-side. It's essential to implement Save server-side event properly as the event is fired consistently in other scenarios, such as auto save, server-side direct save method call, and more.
![]() |
The sectionName parameter of SaveContent method is applicable only in multiple sections mode. To save all sections, simply specify the sectionName parameter to All value. |
Other Resources
{Server side HTML}
