XML Basics- Definition and Intro

 XML Stands for Extensible Markup Language. 

Xml is used to create user defined tags.

Xml is used for temporary storage of text database(Data in text).

 --------------------------------------------------------------------------

XML IN DOT NET-

How to create xml file in dot net-

-Select the root from solution explorer > add new item > select xml file > add

Format of user defined tags-

<root> 

   <subroot attribute="value" >Inner Text</subroot>

</root>

<root> - It is the FirstChild.

<subroot> - It is always inside the <root>.

Inner text - the text written inside the tag.

attribute - the attribute is considered as the column of xml database. 


 









Comments