Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

    Sample Code Sample Code RSS feed

  • Applying XSL transformations to XML in .NET

    by Globalking

    A simple demonstration of how to apply an XSL transformation to an XML file and save the output using .NET. Read full article

  • Inserting images into Word documents using XML

    by Jonathan Greensted

    I've seen many, many requests on the Microsoft newsgroups asking how you can insert a picture into a Word document without saving it to the file system first. This example application described in this blog illustrates both methods for inserting a picture firstly using the Word object model (InlineShapes.AddPicture) and secondly using Word's XML support (InsertXML).. Read full article

  • Customize XML Serialization using IXmlSerializable

    by James Crowley

    Learn how to implement the IXmlSerializable in order to customize serialization of your objects - for instance, serializing a NameValueCollection.. Read full article

  • XML/XSD Schema Validator

    by joe miguel

    To teach how to write XML and Schemas (or DTD's). Some of the schemas language can be difficult to understand. I needed an easy (and free) way to know if my work was correct, if not then exactly what was wrong with it. As implied above, this example will also show you how to use schemas in your own programs. . Read full article

  • XML Node Insert

    by paulmooreparks

    Someone recently asked on the Undernet #C# channel for help with inserting a block of XML into an existing XML document. After perusing a couple of MSDN articles here's what I came up with.. Read full article

  • How to validate an XML file with an XSD file

    by edwardtanguay

    Demonstrates an ASP.NET Web Form which tells you if your file is not well-formed and then if it is not valid it lists out the specific reason (like in XMLSpy), quite helpful to find an error in a large XML file as it returns the line number on which the error occurred as well as the tag name.. Read full article

  • Serialize and deserialize objects to an XML file

    by edwardtanguay

    This code shows the simplest way to automatically convert the information in an object to an XML file and back into an object. This is useful if you need to make information available web-server like on your server for other applications to pick it up.. Read full article