accessing stream object in data island

admin

Administrator
Staff member
is it possible to access a stream object for the 'src' in a data island insteadof a file?something like where the xsl is coming from a file but the xml is comingfrom a stream object:response.write "<XML id='LCTransStyle' src='http://forums.devx.com/archive/index.php/TransactionSummary.xsl'></XML>"response.write "<XML id='LCTransData'>"Set stm = Server.CreateObject("ADODB.Stream")oRsTxn.Save stm, adPersistXMLSet xml = Server.CreateObject("Microsoft.XMLDOM")xml.async = falsexml.loadXML stm.ReadText'stm.Closeresponse.write "</xml>"Thanks so much! Holly
 
Back
Top