Why response.write?

  •  01-28-2004, 8:23 AM

    Why response.write?

    I want to include the editor in my functions.. I always give back the values to the function itself.. Now i cant position the editor on the right place. because:

    Public Function TEST()

     

    strContent = strContent & _

    "<table>" & _

    "<tr>" & _

    "<td>" & Editor.Draw() & "</td>" & _

    "</tr>" & _

    "</table>"

     

    TEST = strContent

    End Function

     

    Can this be possible???

View Complete Thread