<% Dim oFCKeditor %> FCKeditor - ASP Test Page
Normal Text Field


Normal Textarea


FCKeditor - Default Toolbar Set
<% Set oFCKeditor = New FCKeditor oFCKeditor.BasePath = "/FCKeditor/" ' "/FCKeditor/" is the default value so this line could be deleted. oFCKeditor.Value = "This is same sample text." oFCKeditor.CreateFCKeditor "EditorDefault", "100%", 150 %>
FCKeditor - Accessibility Toolbar Set
<% Set oFCKeditor = New FCKeditor oFCKeditor.ToolbarSet = "Accessibility" oFCKeditor.Value = "This is ""another"" 'test'.
The "Second" row." oFCKeditor.CanUpload = False ' Overrides fck_config.js default configuration oFCKeditor.CanBrowse = False ' Overrides fck_config.js default configuration oFCKeditor.CreateFCKeditor "EditorAccessibility", "80%", 120 %>

FCKeditor - Basic Toolbar Set
<% Set oFCKeditor = New FCKeditor oFCKeditor.ToolbarSet = "Basic" oFCKeditor.Value = "

Another test.

" oFCKeditor.CreateFCKeditor "EditorBasic", 300, 80 %>