https://www.developerfusion.com/t/xml/code/sort/popularity/ XML Sample code from Developer Fusion 2006-06-14T08:04:00.00Z http://www.developerfusion.com/code/3944/how-to-create-xml-files/ How to create XML files 2003-08-13T10:23:00.00Z How to generate XML files in PHP using its new_child function. Edward Tanguay http://www.developerfusion.com/code/4639/customize-xml-serialization-using-ixmlserializable/ Customize XML Serialization using IXmlSerializable 2004-12-17T16:14:00.00Z Learn how to implement the IXmlSerializable in order to customize serialization of your objects - for instance, serializing a NameValueCollection. James Crowley http://www.developerfusion.com/code/2646/how-to-write-to-an-xml-file/ How to write to an XML file 2002-07-13T06:38:00.00Z Writing to XML files is quite easy in ASP.NET as there are so many objects prepared for you -- you just need the syntax on how to use them. This code shows you how to write a simple member XML file. Edward Tanguay http://www.developerfusion.com/code/3227/xml-node-insert/ XML Node Insert 2003-01-09T09:02:00.00Z 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. Paul Parks http://www.developerfusion.com/code/4677/inserting-images-into-word-documents-using-xml/ Inserting images into Word documents using XML 2005-03-19T14:00:00.00Z 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). Jonathan Greensted http://www.developerfusion.com/code/5302/url-rewriting-with-regex-for-aspnet-20/ Url Rewriting with Regex for ASP.NET 2.0 2006-01-29T11:16:00.00Z A new feature in ASP.NET 2.0 is it's built-in url rewriting support. When i looked into this new feature I found that it lacked regular expressions support, which is really the point of an Url Mapper. So, this code demonstrates how to create a Url Rewriting Module with Regex support in ASP.NET. Xavier Larrea http://www.developerfusion.com/code/1971/retrieving-remote-image-properties-in-asp/ Retrieving Remote Image Properties in ASP 2002-03-02T15:51:00.00Z This code will allow the programmer to retrieve the width, height, and depth of a jpg and gif that are remotely hosted. LawrenceF http://www.developerfusion.com/code/5247/applying-xsl-transformations-to-xml-in-net/ Applying XSL transformations to XML in .NET 2006-01-19T09:17:00.00Z A simple demonstration of how to apply an XSL transformation to an XML file and save the output using .NET Krishnan http://www.developerfusion.com/code/5639/developing-your-first-visual-webgui-application/ Developing your first Visual WebGui application 2006-04-29T15:57:00.00Z An introduction to Visual WebGui through a sample application. Guy Peled http://www.developerfusion.com/code/4597/rss-feed-helper-class/ RSS Feed Helper Class 2004-04-02T05:44:00.00Z A simple helper class to make generating an RSS feed a piece of cake - its the one we use on Developer Fusion too! James Crowley http://www.developerfusion.com/code/4657/forms-authentication-against-an-xml-file/ Forms Authentication Against An XML File 2005-01-17T02:03:00.00Z The code demonstrates how to validate a username and password against an XML file. Orcs Web http://www.developerfusion.com/code/121/datashaped-sql-clauses/ Data-shaped SQL clauses 2001-07-14T14:48:00.00Z How to build a data-shaped SQL clause for VB ElementK Journals http://www.developerfusion.com/code/5802/the-ajax-top-5-security-tips/ The AJAX "Top 5" security tips 2006-06-14T08:04:00.00Z There is no doubt that AJAX and AJAX-style technologies are the way forward for web design. Developers can create true "applications" on the web like never before - however care needs to be taken with AJAX, in order to keep web sites secure. Moe Tarhini http://www.developerfusion.com/code/2295/xmlxsd-schema-validator/ XML/XSD Schema Validator 2004-02-26T18:29:00.00Z 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. joe miguel http://www.developerfusion.com/code/2518/how-to-validate-an-xml-file-with-an-xsd-file/ How to validate an XML file with an XSD file 2002-06-08T13:50:00.00Z 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. Edward Tanguay http://www.developerfusion.com/code/4266/how-to-create-pdf-files-from-aspnet-pages/ How to create PDF files from ASP.NET pages 2004-01-06T06:44:00.00Z How to create PDF files from ASP.NET pages with Crystal Reports without using Visual Studio.NET Edward Tanguay http://www.developerfusion.com/code/3444/xbrowse/ XBrowse 2003-03-22T15:41:00.00Z XBrowse is a small application that allows the user to view and edit XML files as well as extract XSD schema files from the XML document. It is overall a pretty simple program that is based off of a code snippet in the VS.Net IDE. J P http://www.developerfusion.com/code/2517/serialize-and-deserialize-objects-to-an-xml-file/ Serialize and deserialize objects to an XML file 2002-06-08T13:46:00.00Z 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. Edward Tanguay http://www.developerfusion.com/code/2303/combining-javascript-and-dom/ Combining Javascript and DOM 2002-04-15T14:51:00.00Z David Nishimoto demonstrates accessing the Document Object Model available in IE 5 from your javascript code David Nishimoto http://www.developerfusion.com/code/2064/a-simple-way-to-read-an-xml-file-in-java/ A simple way to read an XML file in Java 2002-02-26T15:51:00.00Z This is the simplest way to read data from an XML file into a Java program. I have also included some basic error checking, so you can directly cut-paste this code with a few changes ofcourse. Kiran Pai