Is it possible not to use the
<CE:Editor .... > I mean using the tag prefix of CuteEditor.
seems both asp and asp.net need to call this one.
our problem was we compile all the html codes into dlls files
therefore we actually do not have any separation page between presentation and behind code, all combines become one
So we build all the html tags into classes....
something like http.Response.write ("<html><body>") and so on
Below is the sample code
Dim
re As New CuteEditor.Editor
re.ID = "test"
re.EditorWysiwygModeCss = "../example.css"
re.ThemeType = CuteEditor.ThemeType.Office2003
re.AutoConfigure = CuteEditor.AutoConfigure.Simple
re.ActiveTab = CuteEditor.TabType.Edit
re.BreakElement = CuteEditor.BreakElement.Div
re.CodeViewTemplateItemList = "Save,Print,Cut,Copy,Paste,Find,ToFullPage,FromFullPage,SelectAll,SelectNone"
now the difficult part is how to display the re object into html???
I cant convert the editor to string HTML because of different type...
anyone got any idea?