Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

(Page 1 of 2) 39 Result(s) found 

 

A better way to query for a single node
Total Hit (2510) In the XmlNode class, that is the class that provides node functionality in an XMLDOM representation of an XML document, the SelectNodes (and the ancillary SelectSingleNode) method exploits the XPath query language to let you extract nodes based on logical conditions. The SelectNodes methods return ....Read More
Rating
Handle child XML nodes with care
Total Hit (2632) When you work with XML documents loaded into an XmlDocument class, you often need to examine the contents of child nodes. The XMLDOM programming interface purposedly provides the ChildNodes property. In the .NET XmlDocument class, ChildNodes returns an internal object of type XmlChildNodes. (The obj ....Read More
Rating
Creating an XML Document with the XMLTextWriter Class
Total Hit (2744) To quickly create a new XML document you can use the XMLTextWriter class. There are many ways to create XML in the .NET Framework, but the XMLTextWriter is one of the quickest. «Code LangId=2» Dim mywriter As System.Xml.XmlTextWriter mywriter = New System.Xml.XmlTextWriter("c:\myxml.xml", Not ....Read More
Rating
CreateAppendElement - appending a XmlElement under another XmlNode
Total Hit (2695)
Rating
DisplayXmlFile - loading a XML file in a TreeView
Total Hit (2671)
Rating
This is a link to a different site Querying XML Data with XQuery
Total Hit (1692)
Rating
This is a link to a different site What is the easiest way of extracting certain data from an XML document?
Total Hit (1688)
Rating
This is a link to a different site How do I read/write objects into xml?
Total Hit (1036) This topic describes how to automatically map a particular XML stream into a set of objects designed to hold the XML using the XML Serialization classes.
Rating
This is a link to a different site How do I create classes from an XSD schema?
Total Hit (994) This topic describes how to create classes that can be used to read and write XML that is defined by an XML Schema Description (XSD) file. Once you understand how to generate the classes for your XSD schema, you should read the "How Do I Read and Write Objects From XML?" topic to find out how to act ....Read More
Rating
This is a link to a different site How do I create an XML Schema Definition (XSD) File From a Class?
Total Hit (1014) This topic describes how to build an XSD file for classes that you save and load from XML using the XML Serialization classes. The XML Serialization classes allow you to serialize an object as XML . Often you will start with an XML Schema Definition (XSD) file, and use the XSD.exe tool to build the ....Read More
Rating
This is a link to a different site XML in the .NET Framework
Total Hit (1090) Extensible Markup Language (XML) is a meta-markup language that provides a format for describing structured data. XML enables a new generation of Web-based data viewing and manipulation applications. XML is the universal language for data on the Web. XML gives developers the power to deliver structu ....Read More
Rating
This is a link to a different site How Do I...Read XML from a file?
Total Hit (942) This sample illustrates how to read XML from a file using the XmlTextReader class. This class provides direct parsing and tokenizing of XML, and implements the W3C Extensible Markup Language (XML) 1.0 and the Namespaces in XML specifications.
Rating
This is a link to a different site How Do I...Read XML data from a stream?
Total Hit (990) This sample illustrates how to read XML from a stream using the XmlTextReader class. The stream could have come from a variety of sources such as a byte stream from a server, a file, or from a TextReader.
Rating
This is a link to a different site How Do I...Read XML from a URL?
Total Hit (2126) This sample illustrates how to read XML from an URL using the XmlTextReader class.
Rating
This is a link to a different site How Do I...Write XML to a file?
Total Hit (918) This sample illustrates how to write XML to a file using the XmlTextWriter class. The writer provides a fast, forward-only way of generating XML and helps you to build XML documents that conform to the W3C Extensible Markup Language (XML) 1.0 and the Namespaces in XML specifications. The XmlTextWrit ....Read More
Rating
This is a link to a different site How Do I...Apply validation when reading XML?
Total Hit (999) This sample illustrates how to apply validation when reading and parsing XML data using the XmlValidatingReader class. Validation is the process of enforcing rules on the XML content either via a Document Type Definition (DTD) or a schema. At it's simplest, a schema is an XML representation of a DTD ....Read More
Rating
This is a link to a different site How Do I...use multiple XmlReaders
Total Hit (1018) In some situations, you may have one reader that reads part of an XML document, and one or more other readers that read the rest of the document. For example, an e-commerce ordering system may have orders submitted as XML documents. In processing these orders, one reader may process information at t ....Read More
Rating
This is a link to a different site How Do I...Load and use the XmlDocument (W3C DOM)?
Total Hit (1002) How Do I...Load and use the XmlDocument (W3C DOM)? This sample illustrates the classes which implement: «LI»the Document Object Model (Core) Level 1 the World Wide Web Consortium (W3C) Document Object Model (DOM) Level 1 Specification. «LI»the Document Object Model Core in the W3C Document Ob ....Read More
Rating
This is a link to a different site How Do I...Save XML with the XmlDocument (W3C DOM)?
Total Hit (974) This sample illustrates how to update and save XML using the XmlDocument class, which is an implementation of the World Wide Web Consortium (W3C) Document Object Model (DOM).
Rating
This is a link to a different site How Do I...Handle Events from XmlDocument?
Total Hit (908) This sample illustrates how to receive and handle events when nodes in an XML document change. In particular, this sample demonstrates how to catch the NodeChanged and NodeInserted events described in the following paragraphs. Modifying an XmlDocument can result in one or more of the following e ....Read More
Rating
This is a link to a different site How Do I...Use an XmlNodeReader?
Total Hit (992) This sample illustrates how to create and use an XmlNodeReader. An XmlNodeReader is a reader that provides fast, non-cached, forward-only access to XML data in an XmlNode. It has the ability to read an entire XML DOM tree or read from just a subtree. However, the XmlNodeReader does not support Docum ....Read More
Rating
This is a link to a different site How Do I...Load XML data into an XmlDataDocument?
Total Hit (967) This sample illustrates how to load XML into the XmlDataDocument class. This class extends the XmlDocument class, allowing structured data to be stored, retrieved, and manipulated through the DataSet class, which provides a relational view onto the loaded XML data. This affiliation between the XmlDo ....Read More
Rating
This is a link to a different site How Do I...Navigate XML with the XPathNavigator?
Total Hit (1006) This sample illustrates how to navigate XML documents with an XPathNavigator created from an XPathDocument. It also demonstrates how to use an XPathNodeIterator. The XPathNavigator class provides a cursor-style model to navigate an XML document. This topic also introduces XML Path Language (XPath) e ....Read More
Rating
This is a link to a different site How Do I...Query XML with an XPath expression?
Total Hit (985) This sample illustrates how to query an XPathDocument with an W3C XML Path Language (XPath) expression supplied to the XPathNavigator class. The XPathNavigator class is only for read-only XPath queries over a document and, for Extensible Stylesheet Language Transformations (XSLT) processing, is impl ....Read More
Rating
This is a link to a different site How Do I...Apply an XSL Transformation to XML?
Total Hit (990) This sample illustrates how to apply an Extensible Stylesheet Language Transformations (XSLT) file to an XML document using the XslTransform class. This class implements the World Wide Web Consortium (W3C) W3C XSL Transformations (XSLT) version 1.0 specification. (For further reference, you might wa ....Read More
Rating
This is a link to a different site How Do I...Use an XPathExpression class?
Total Hit (1048) This sample illustrates how to use an XPathExpression class to compile an XML Path Language (XPath) expression to select a node-set from an XML file. Then the sample demonstrates how to add a custom sort routine and use an XPathExpression to sort the elements returned by the compiled XPath. Finally, ....Read More
Rating
This is a link to a different site How Do I...Use XML and the DataSet?
Total Hit (1095) These topics provide an introduction to the interaction between the DataSet and XMLDataDocument objects.
Rating
This is a link to a different site How Do I...Create DataSet mappings from an XSD schema?
Total Hit (958) This sample illustrates how to create DataSet mappings from a supplied XML Schema Definition language (XSD) schema. Generally, schemas are metadata, or data about data, but XSD schemas also cover the relationships between data types. From a schema, you can create a relational structure of tables and ....Read More
Rating
This is a link to a different site How Do I...Load a DataSet with XML?
Total Hit (988) This sample illustrates how to load a DataSet with XML Data. The sample builds on the topic, How Do I...Create DataSet mappings from an XSD schema?, by first loading XML data into an XmlDataDocument and then accessing this data from the DataSet. The DataSet has previously loaded a schema in order to ....Read More
Rating
This is a link to a different site How Do I...Infer DataSet mappings from XML?
Total Hit (936) This sample illustrates how to create DataSet mappings from XML Data. This sample uses the concept of inference, whereby the actual structure of the XML data itself is the basis for a relational schema. The sample then creates a relational structure of tables and columns to store data in a DataSet t ....Read More
Rating


(Page 1 of 2) 39 Result(s) found  1 2

Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.