I'm getting an XML dataset from a web service passed as a string.
I then do
XmlDocument myXmlDoc = new XmlDocument();
myXmlDoc.Load(mystring);
This causes an exception: Illegal characters in string. the string contains
<?xml version=\"1.0\"
encoding=\"UTF-8\"?>\n<validate>\n\t\t\t\t\t<er...
more >>
I have a class (UserAccount) that uses a List<T> to contain a collection of
Account classes. The Account class uses a List<T> to contain a collection of
the account items. If the Account class is a checking account its List<>
collection contains instances of the CheckItem class, which repres...
more >>
I want to make my XML as such:
<parentItem>
<childItem attribute="myAttribute">myContent</childItem>
</parentItem>
I thought I could just do this:
objXMLWriter.WriteElementString("childItem", "myContent")
objXMLWriter.WriteAttributeString("attribute", "myAttribute")
But...I get an ...
more >>
At the moment, I'm doing some XSLT (1.0) work in ASP.net (1.1).
There's some features I'd like to use that apparently are found in XSLT 2.0.
Does ASP.net 1.1 support XSLT 2? What about ASP.net 2.0?
EXSLT was also mentioned. Does ASP.net support that?
-Darrel
...
more >>