I've created a com object that returns a boolean value to the calling asp page. However, I'd also like to write some content to the page that is calling the object. I've read a bit about the scriptingobject and the objectcontext, but I'm not sure exactly how it would fit into what I'm doing.

In my main method that is called from the asp page, would I put in something like...

objLocalContext = ObjectContext("Response")
objLocalContext.write "whatever I want to write"

I wouldn't think so since my method is returnign a boolean value, but I'm not sure how else to do it. Any help or direction on this would be greatly appreciated!!!