I've got some C# 2.0 code that has been working for a year.
using (XmlWriter w = XmlWriter.Create("out.xml" ,settings)) {
// many lines of code to write to w
w.WriteStartElement("contactTypeRef");
Suddently, I'm getting this 100% repeatable error:
************** Exception Text *******...
more >>
Hi
I'd like to get a populated datatable, create an in memory xml document
(file shouldn't be more than a couple of meg), load an XSLT file, do a
transform and stream it to a browser. What am I Missing please?
MemoryStream strm = new MemoryStream();
XmlWriter writer = XmlWriter.Create(s...
more >>
I have an xml file (sample below) that is massive. hundreds of megs maybe
thousands. I need to split it up into multiple files so each file gets a
copy of the header element and sub elements and 1 detail element. There
will be 1 file created for each detail element. Any tips how to do this?...
more >>
I have an XML file that looks like this:
<Counties>
<County>
<District>2</District>
<CountyName>Palm</CountyName>
</County>
<County>
<District>3</District>
<CountyName>McCarthy</CountyName>
</County>
</Counties>
I am trying to use a XPat...
more >>