Search   Articles   Dev Forums   Personalize   Favorites   Member Login   ASP.Net Hosting
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Monday, October 13, 2008

Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 
FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Knowledge Base > C-Sharp > C# and XML
Search:
What's New - What's Hot


How To Save a DataSet Class as XML in .NET Framework SDK        
Total Hits: 60  |  Today: 0 Author: Microsoft       Rating:  
Read Reviews | Write Review |   Your Rating: 

This document illustrates how to save relational data that is loaded into a DataSet class to a file as Extensible Markup Language (XML). This demonstrates the transition between relationally mapped data and XML data....

HOW TO: Implement and Use Custom Extension Functions When You Execute XPath Queries in Visual C# .NET        
Total Hits: 246  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

Non-standard user-defined functions that are used in XML Path Language (XPath) query expressions are referred to as XPath extension functions. You may want to implement a custom XPath extension function when the standard XPath functions do not address a specific requirement....

HOW TO: Use the Encoding Property with System.Xml Classes in Visual C# .NET        
Total Hits: 32  |  Today: 0 Author: Microsoft       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step-by-step article explains how to use the Encoding property with XML in .NET Framework. The encoding declaration in the XML declaration identifies the encoding format of the XML data. In the System.Xml namespace, the Encoding property of the classes identifies the encoding format....

HOW TO: Validate an XML Document by Using Multiple Schemas in Visual C# .NET (Q318505)        
Total Hits: 2760  |  Today: 1 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step-by-step article describes how to use the XmlValidatingReader object to validate an Extensible Markup Language (XML) file with multiple XML Schema Definition Language (XSD) schemas. The code sample uses the XmlSchemaCollection object to cache the schemas. For more information about the XmlValidatingReader and the XmlSchemaCollection classes, see the REFERENCES section....

HOW TO: Use the System.Xml.XmlDocument Class to Run XPath Queries in Visual C# .NET (Q318499)        
Total Hits: 2624  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step-by-step article describes how to execute XPath queries by using the SelectNodes and SelectSingleNode methods of the XmlDocument class....

HOW TO: Use the XPathException Class in Visual C# .NET (Q318547)        
Total Hits: 353  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step-by-step article demonstrates how to write exception handling code to trap and handle an XPathException (System.Xml.XPath.XPathException). Writing error handling code to catch an XPathException when executing the Select and Compile methods of the XPathNavigator object will help to identify exceptions caused by an invalid XPath query expression....

Filtering the XSLT / AJAX WebGrid        
Total Hits: 263  |  Today: 1       Rating:  
Read Reviews | Write Review |   Your Rating: 

Whenever we enable the WebGrid’s XML Load On Demand functionality, this essentially makes use of AJAX requests to fetch the additional rows as they are scrolled into view. Performing other programmatic actions against the Data Source of the Grid such as filtering and sorting requires us to follow some important guidelines so that you will get the results that you expect. This article will show how to allow filtering on the underlying DataView that the WebGrid is bound to....

HOW TO: Validate XML Fragments Against an XML Schema in Visual C#.NET (Q318504)        
Total Hits: 1930  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step-by-step article describes how to use XmlValidatingReader and XMLSchemaCollection objects to validate an Extensible Markup Language (XML) fragment against an XML schema....

HOW TO: Modify an XML Schema by Using System.Xml.Schema Classes in Visual C# .NET (Q318502)        
Total Hits: 1131  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

The XmlSchema class contains the definition of a schema. All XSD elements are children of the schema element; this represents the World Wide Web Consortium (W3C) schema element. You can use these classes to generate new XML schemas or modify existing ones....

HOW TO: Use the AddSort Method of the XPathExpression Object in Visual C# .NET (Q318542)        
Total Hits: 897  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step-by-step article demonstrates how to use the AddSort method of the System.Xml.XPath.XPathExpression class to sort the results of an XML Path Language (XPath) query that is based on a specified element or attribute....

HOW TO: Load and Save XML by Using DOM in .NET Framework with Visual C# .NET (Q317662)        
Total Hits: 2171  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

Use this step-by-step guide to learn how to programmatically load and save Extensible Markup Language (XML) documents by using the System.Xml.XmlDocument class. This class is compliant with the World Wide Web Consortium Document Object Model (DOM) Level 1 and Level 2 core standards. Furthermore, System.Xml.XmlDocument implements the core XML DOM parser in Microsoft .NET Framework....

HOW TO: Locate and Replace Special Characters in an XML File with Visual C# .NET (Q316063)        
Total Hits: 980  |  Today: 1 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article describes how to replace special characters in an Extensible Markup Language (XML) file by using Visual C# .NET....

HOW TO: Access XML Data Using DOM in .NET Framework with Visual C# .NET (Q317664)        
Total Hits: 908  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step-by-step article explains how to access required data in extensible markup language (XML) documents programmatically by using the System.Xml.XmlDocument class and the related classes....

HOW TO: Query XML with an XPath Expression Using Visual C# .NET (Q308333)        
Total Hits: 2071  |  Today: 1 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article demonstrates how to query an XPathDocument object with an XML Path Language (XPath) expression using the XPathNavigator class. XPath is used programmatically to evaluate expressions and select specific nodes in a document....

HOW TO: Transfer XML Data to Microsoft Excel 2002 Using Visual C# .NET (Q307029)        
Total Hits: 467  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

Excel 2002 introduces functionality for opening files in the Extensible Markup Language (XML) format. An XML file that is well-formed can be opened directly in Excel 2002 by using either the user interface or code....

HOW TO: Merge Data from Two XML Documents Using System.Xml with Visual C# .NET (Q311530)        
Total Hits: 1976  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step-by-step article shows you how to use a DataSet object to merge two XML documents. The DataSet object is central to supporting disconnected, distributed data scenarios with ADO.NET. The DataSet is a memory-resident representation of data that provides a consistent, relational programming model regardless of the data source. The DataSet represents a complete set of data, including related tables, constraints, and relationships among the tables....

HOW TO: Modify and Save XML with the XmlDocument Class (Q301233)        
Total Hits: 1558  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

This sample illustrates how to update and save XML with the XmlDocument class....

HOW TO: Use Extension Objects When You Execute XSL Transformations in Visual C# .NET Applications        
Total Hits: 193  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

In-line script blocks and external code components can be used to implement custom routines that are invoked during the course of an XSL transformation (XSLT) to perform calculations and process data. Microsoft recommends that you avoid the usage of in-line script blocks, and instead use external code components to implement such custom routines when you design portable XSLT style sheets. External code components that are used by XSLT are referred to as XSLT Extension objects....

HOW TO Access protected document in Document Function of XSLT using Visual C# .Net        
Total Hits: 29  |  Today: 0 Author: Microsoft       Rating:  
Read Reviews | Write Review |   Your Rating: 

This step-by-step article demonstrates the process of instantiating and supplying a custom XmlUrlResolver to resolve document() references to external XML resources that are located on authenticated Web sites or folders.

XmlTransform class uses the underlying XmlResolver class to read the files referenced in the XSL. You can specify the credentials to the XmlResolver. The XmlResolver class supports three methods for authenticating Web requests: Basic authentication, Digest authentication ...

How To Modify and Save XML with the XmlDocument Class in the .NET Framework SDK        
Total Hits: 51  |  Today: 1 Author: Microsoft       Rating:  
Read Reviews | Write Review |   Your Rating: 

The following list outlines the recommended hardware, software, network infrastructure, and service packs that you will need:
• Microsoft Windows 2000 Professional, Windows 2000 Server, Windows 2000 Advanced Server, or Windows NT 4.0 Server
• Microsoft Visual Studio .NET
This article assumes that you are familiar with the following topics:
• XML terminology
• Creating and reading an XML file
• The Document Object Model (DOM)...


1  2  Next >> 


DevASP.Net - Disclaimer - Privacy
Copyright © 2008 DevASP.net