Well im building up a string with design stuff like tables etc. While im building that string I want to include the editor. But since the editor is all response.write I cant do this. I mean i cant build up a string including the cuteeditor and then write the string to the screen since the cuteeditor already write itself down... Pfew im explaining it a bit stupid i quess..
But lets say your building up a string:
string = "hello world"
and i want the editor to be placed between hello and world it aint possible in this setup... i CANT do something like this:
string = "hello " & editor.Draw() & " world"
because of the response.writes it gets written before i write the string to the screen. I hope you understand now.