anyone know about msxml 3 and asp+? i haven't been able to find much info
about straight xml support aside from databinding. i really like the ms
parser and it's interfece in asp 3.0. i've looked through the xml namespaces
and it's sparce as hell? any resource pointing would be greatly apreicated.
thanx
(Chris Donnan);
function contact(me){
var e = "launchpad to the universe of electronic music";
for (Enetronic.com = e){
[me].phone=7182540277;
[me].fax=7188558029;
}
}
You can use XMLDOM in ASP+.
xmlDom = Server.CreagteObject("Microsoft.XMLDOM")
In .Net you can use the NameSapce System.NewXML
In the pre-beta the assebmly system.xml.dll is not loaded by defualt.
For example you can write this to your ASP+ page:
<%@ Assembly Name="System.xml.dll" %>
<%@ Import NameSpace="System.NewXML" %>
You can then use for example XMLDocument.
Dim myXmlDoc As XMLDocument = New XMLDocument
myXmlDoc.Load("c:\book.xml")
...
You can read more about this in the SDK.
http://localhost/quickstart/howto/default.htm
In Beta 1. there will have a new namespace "System.XML". They will split
the System.NewXML in two to part.
Syste.NewXML and System.XML.
/Fredrik Normen