I have a problem. Just started using 3 forms.
' FIRST EDITOR
Dim editor
Set editor = New CuteEditor
editor.ID = "Editor1"
.....blah blah blah
editor.Draw()
' SECOND EDITOR
Set editor = New CuteEditor
editor.ID = "Editor2"
.....blah blah blah
editor.Draw()
' THIRD EDITOR
Set editor = New CuteEditor
editor.ID = "Editor3"
.....blah blah blah
editor.Draw()
request.form("Editor1_HTMLcontent") returns the HTML content as wanted from "editor1"
BUT
request.form("Editor2_HTMLcontent")
request.form("Editor3_HTMLcontent")
doesn't return anything ???????
What am i doing wrong.