Niranjan Thangaiya
Niranjan Thangaiya

Reputation: 515

How to Create an XML object in Visual Studio C#

I want to pass an XML object from code behind file of an aspx to an class library.for that how can i create a XML Object. please its urgent.

Upvotes: 0

Views: 4236

Answers (2)

Richard
Richard

Reputation: 108975

.NET includes multiple XML APIs (XML Document—a typical DOM implementation, a streaming API, an XPath orientated API and LINQ to XML). So lots to chose from.

Without more detail impossible to say which is your best approach. I would suggest starting reading MSDN at "XML Documents and Data".

Upvotes: 3

Related Questions