<%@ page import="com.imcode.imcms.api.*" errorPage="error.jsp" %> <% ContentManagementSystem imcmsSystem = ContentManagementSystem.fromRequest( request ); DocumentService documentService = imcmsSystem.getDocumentService() ; int documentId = 1189; TextDocument document = documentService.getTextDocument(documentId) ; String newHtmlText = "Log in!
API-samples."; document.setHtmlTextField( 1, newHtmlText ) ; String newPlainText = "If we knew what it was we were doing, it would not be called research, would it? -- Albert Einstein"; document.setPlainTextField( 2, newPlainText ) ; documentService.saveChanges( document ); %> Done. See document <%= documentId %>.