Set for property? I've not yet seen such syntax.
/output/ property wants stream object. We simply feed it. Coffee or
something may be more helpful than my reply ;)
--
Han Pohwan, Microsoft MVP, Seoul, Korea
Mail with any alphabets in the title will be removed. Use only numbers.
Quote:
> If I'm using msxml2.XSLTemplate I can createProcessor and retrieve an
> IXSLProcessor that has input and output properties.
> If I want to set the output to write to the Response object from ASP
> according to the Microsoft examples I write:
> xslProc.output = Response
> xslProc.transform()
> Why don't I have to write:
> Set xslProc.output = Response
> xslProc.transform()
> Joe