Retrieving data with multiple editors

  •  02-03-2005, 12:51 PM

    Retrieving data with multiple editors

    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.
View Complete Thread