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

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 > Articles & Samples > C-Sharp > C# and XML
Search:
What's New - What's Hot

XML Pathfinder – A C# Utility        
Total Hits: 12  |  Today: 0 Author: salysle       Rating:  
Read Reviews | Write Review |              Your Rating: 

This article discusses the construction of a simple utility that may be used to locate and evaluate paths within an XML document, and to test queries against those paths. The application allows the user to open an XML document into a TreeView control for easy viewing of the structure; the user may right click on any node within the TreeView to expose a context menu that will allow the user to copy the current path to that node. The user may then open a test window up and paste the copied path in...

Web Service: XML Config To C# Class        
Total Hits: 43  |  Today: 0 Author: Remas Wojciechowski       Rating:  
Read Reviews | Write Review |              Your Rating: 

.NET offers an elegant way to store configuration data for applications the .config file. You can use that mechanism in both Windows and ASP.NET applications....

C# - XML To DataSet        
Total Hits: 93  |  Today: 0 Author: Charles Carroll       Rating:  
Read Reviews | Write Review |              Your Rating: 

Here is the XML Parser........

Creating and Parsing XML Documents in JDeveloper        
Total Hits: 75  |  Today: 0 Author: Deepak Vohra       Rating:  
Read Reviews | Write Review |              Your Rating: 

Oracle's XDK 10G extends JAXP to make reading, writing, and querying XML easy.
One of the first programming exercises for beginning XML developers is to create and parse an XML document. The Java API for XML Parsing (JAXP) includes an API for doing this. Oracle XDK 10g extends the base JAXP capabilities by providing an API in the oracle.xml.parsers.v2 package that overrides some of the classes in the JAXP API and also implements some additional interfaces such as DocumentEditVAL, ElementEditV...

ASP.Net : AutoList        
Total Hits: 92  |  Today: 0 Author: Sanjay Kumar       Rating:  
Read Reviews | Write Review |              Your Rating: 

This small web application has following features:
1.
Auto suggest list box [AutoList.js]
2.
Auto select text.
3.
Scrolling list item either one by one or on the basis of defined page size.
4.
Multicolor list item.
5.
Getting result in the xml form directly from SQL Server using 'FOR XML' and to process it to populate list box or to send back to client.
6.
Client side population of list box from xml.
...

XML Serialization Using C#...        
Total Hits: 210  |  Today: 0 Author: Nitin Pande       Rating:  
Read Reviews | Write Review |              Your Rating: 

Object serialization is a process through which an object's state is transformed into some serial data format, such as XML or a binary format. Object Serialization is a process through which an object's state is transformed into some serial data format, such as XML or a binary format. For example, you can serialize an object and transport it over the Internet using HTTP between a client and a server. On the other end, deserialization reconstructs the object from the stream. XML was designed to b...

WPF : A Beginners guide part 2 of n        
Total Hits: 14  |  Today: 0 Author: Sacha Barber       Rating:  
Read Reviews | Write Review |              Your Rating: 

so it seems that from the response of my WPF : A Beginners guide part 1 of n article, that there are enough people interested in a "beginners guide to WPF" to warrant me carrying on with this series, so I will. I have however, come to a decision, and that is, that this article, will actually encompass the following topics :

* XAML vs Code
* Markup Extensions
* WPF Resources

Just cos it makes more sense to have these 2 combined into one article in my opinion....

Using .NET Library and XML in VB6        
Total Hits: 8  |  Today: 0 Author: Nelson Kosta Souto       Rating:  
Read Reviews | Write Review |              Your Rating: 

INI files and the registry are generally things of the past for .NET applications. But what to use? XML seems appropriate, but one look at System.XML is enough to scare most developers off, especially just to store a few fields. Fortunately, there is a very easy way in .NET to solve this, but one that is usually not seen by developers. In this article, I’ll explain how you can easily store and retrieve your application settings with just a few lines of code....

an XML to CSV converter        
Total Hits: 42  |  Today: 0 Author: danielbromley       Rating:  
Read Reviews | Write Review |              Your Rating: 

its basically code for a very simple Nth level XML to CSV converter.This will convert a file full of XML of the following format...

Easy XML Parsing in C#        
Total Hits: 43  |  Today: 0 Author: Joseph Armbruster       Rating:  
Read Reviews | Write Review |              Your Rating: 

Suppose you have an XML Schema with XML files that satisfy it and you need to get data out of the XML files in a way that is easy to read and maintain. There are quite a few ways to approach this problem in any language (C# included). The XmlSerializer is the one stop shop for quick and easy XML parsing in C#. The purpose of this article it to provide an overview to generating C# object bindings for a schema and parsing an XML file using those bindings. This is accomplished by demonstrating this...

Errors in XML Log with C#/.NET        
Total Hits: 50  |  Today: 0 Author: GriffonRL       Rating:  
Read Reviews | Write Review |              Your Rating: 

Like other programmers I use a lot of try...catch statements in my code to catch exceptions, help debug, and avoid crashs. For that reason, I put a lot of Console.Error.WriteLine(...) in my catch blocks to keep a trace of the exceptions that occured. But when I release an app, even if exceptions should not happen anymore, it is always useful to have some kind of system to keep a trace of raised exceptions. The following code demonstrates a solution to keep a trace of those exceptions in a XML fi...

Image to xml File or to file transfer using asp.net c#        
Total Hits: 66  |  Today: 0 Author: Balaji Manoharan       Rating:  
Read Reviews | Write Review |              Your Rating: 

This article consist of operations which will transfer data to xml file and read data from xml file....

Post xml data to asp.net page using C#        
Total Hits: 43  |  Today: 0 Author: S Sansanwal.       Rating:  
Read Reviews | Write Review |              Your Rating: 

his article describe the function to post xml data to asp.net page and then read the data on asp.net page....

Load and save objects to XML using serialization        
Total Hits: 526  |  Today: 0 Author: T-C.       Rating:  
Read Reviews | Write Review |              Your Rating: 

This C# program demonstrates loading and saving an object containing a bitmap and collections to an XML file using .NET XML serialization. XML serialization enables an object's public fields and properties to be saved and loaded to/from an XML file....

Experimenting Custom Build Providers        
Total Hits: 194  |  Today: 0 Author: Cristian O.       Rating:  
Read Reviews | Write Review |              Your Rating: 

Microsoft released the source code for the built-in Providers that ship with the .NET 2.0 framework. While I never downloaded them, this release caught my attention, so I started to study this new feature of ASP.NET. I was really impressed by the power of the build providers (I don't know why they didn't get my attention until now), so I decided to share my weekend experience with you....

Building XML File in C#        
Total Hits: 811  |  Today: 0 Author: devhood       Rating:  
Read Reviews | Write Review |              Your Rating: 

This tutorial is designed for people with basic XML knowledge, to serve as a reference when building a XML file, the idea is very simple. Finding all the classes, methods needed is actually what takes time, thus the tutorial concentrates on C# language....

Manipulate XML File Data Using C#        
Total Hits: 817  |  Today: 0 Author: CodeGuru       Rating:  
Read Reviews | Write Review |              Your Rating: 

Nearly 95 percent of .NET applications use XML for various tasks. A main usage for Web developers is combining XML with HTML to display information on Web pages, which relieves them from having to spend a long time editing the content on their Web pages. A single change to an XML file will be reflected across the entire Web site, thus simplifying the development and also greatly reducing the development time....

Working with XML Processing Instructions in C#        
Total Hits: 349  |  Today: 0 Author: aspalliance       Rating:  
Read Reviews | Write Review |              Your Rating: 

This Article will cover XML Processing Instructions; adding them to an XML Document or editing the processing instructions value. This will demonstrate how to do this using C#....

On tree diagrams and XML        
Total Hits: 325  |  Today: 0 Author: codeproject       Rating:  
Read Reviews | Write Review |              Your Rating: 

A tree structure is a type of data structure in which each element is attached to one or more elements directly beneath it. In the literature you will often see the term 'binary tree' (or B-tree) which is a special type of inverted tree in which each element has only two branches below it....

HOW TO: Validate an XML Document by Using Multiple Schemas in Visual C# .NET (Q318505)        
Total Hits: 2717  |  Today: 0 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....


1  2  3  4  5  6  7  Next >> 


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