Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Read data between ADO, XML and HTML

Status
Not open for further replies.

samsamito

Programmer
Apr 15, 2003
2
ES
Hi, [sadeyes]

I got an ADO recordset where by using .save I store the data in a file with extension xml

I now want to read the contents of that file to put them on an html file.

Any ideas?

Thanks,[bigears]

 
You could create an XSLT file that contains the commands to translate the XML into a HTML format.

Is that what you mean?

-pete

 
Hi Pete,

Could you explain a bit more how to create the XSLT file with the commands to translate the XML into a HTML format?

This is what I want in XML.

<ENTIDADES>
<ENTIDAD>
<ENTID>71</ENTID>
<RSocEnt>Javier Egeldín S.A.</RSocEnt>
</ENTIDAD>
<ENTIDAD>
<ENTID>81</ENTID>
<RSocEnt>Mercedes Benz S.A.</RSocEnt>
</ENTIDAD>
<ENTIDAD>
<ENTID>91</ENTID>
<RSocEnt>Ayuntamiento de Erandio</RSocEnt>
</ENTIDAD>
<ENTIDAD>
<ENTID>101</ENTID>
<RSocEnt> </ENTIDAD>
</ENTIDADES>


Thanks, [morning]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top