XML in DHTML Application by VB
I know that there's a dll provided by VB for XML, and so the sample by MSDN. But i wonder if i can generate a XML page through VB which the XML file to be generated is not existing before that process is done. Most of the time i found that the XML DLL will havto load ur pre-generated XML
document rather than generate it from scratch. And what 's the algorithm behind ??
Thanx in advance !
[409 byte] By [
calenkl] at [2007-11-17 12:52:36]

# 1 Re: XML in DHTML Application by VB
Yes, you can create an XML file from scratch using the MSXML component.
There is not only a load method but also a save method.
Chris Eastwood has posted an article somewhere on this site about a Guestbook app that's based on XML.
It shows how to dynamically create nodes and save the XML to a file.
# 2 Re: XML in DHTML Application by VB
Thanx !!
i'd done the project !!
but now i'd gotta use the VC++ to create the server component, in order to distract the XML that parsed to the server site, and the information in XML be then be saved in the server site...
is there any ideas 'bout this case ?