Xml

  • November 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Xml as PDF for free.

More details

  • Words: 334
  • Pages: 4
XML 12.1 How to write the data from database into an XML file?

VB.NET

'Fill the DataSet ds.WriteXml(Server.MapPath ("products.xml" ) )

C#

//Fill the DataSet ds.WriteXml(Server.MapPath ("products.xml" ) );

Note : Make sure you have write and modify rights.

12.2 How to read data from an XML file and display it in a DataGrid?

VB.NET

dim ds as new DataSet() ds.ReadXml (Server.MapPath ("products.xml")) DataGrid1.DataSource =ds DataGrid1.DataBind()

C#

DataSet ds= new DataSet (); ds.ReadXml (Server.MapPath ("products.xml")); DataGrid1.DataSource =ds; DataGrid1.DataBind();

12.3 How to read data from the XML file using FileStream and display it in a DataGrid?

Use namespace System.IO VB.NET

dim ds as new DataSet()

dim fs as FileStream = new FileStream (Server.MapPath ("products.xml"),FileMode.Open , FileAccess.Read ) ds.ReadXml (fs) DataGrid1.DataSource = ds DataGrid1.DataBind ()

C#

DataSet ds= new DataSet (); FileStream fs = new FileStream (Server.MapPath ("products.xml"),FileMode.Open , FileAccess.Read ); ds.ReadXml (fs); DataGrid1.DataSource = ds; DataGrid1.DataBind ();

12.4 How to save an xml-string into an Xml document?

VB.NET

Dim xmlText As String = " Node1 Node2 " Dim xmlDoc As New XmlDocument xmlDoc.LoadXml(xmlText) Dim writer As XmlTextWriter = New XmlTextWriter(Server.MapPath("data.xml"), Nothing) writer.Formatting = Formatting.Indented xmlDoc.Save(writer)

C#

string xmlText = " Node1 Node2 "; XmlDocument xmlDoc = new XmlDocument(); xmlDoc.LoadXml(xmlText); XmlTextWriter writer = new XmlTextWriter(Server.MapPath("data.xml"),null); writer.Formatting = Formatting.Indented; xmlDoc.Save(writer);

12.5 How to use the tag?



12.6 How to display the Attribute values in an XML Document in a DataGrid?

products.xml

2 Chang <SupplierID>1 1 24 - 12 oz bottles 3 Aniseed Syrup <SupplierID>1 2 12 - 550 ml bottles

Use Namespace System.Xml VB.NET

<%#CType(Container.DataItem, System.Xml.XmlNode).Attributes("pcode").value%>

dim xmldoc as XmlDocument = new XmlDocument() xmldoc.Load(Server.MapPath("products.xml")) dim xmlnodes as XmlNodeList = xmldoc.SelectNodes("NewDataSet/Product/ProductID") DataGrid1.DataSource = xmlnodes DataGrid1.DataBind ()

C#

<%# ((System.Xml.XmlNode)Container.DataItem).Attributes["pcode"].Value %>



XmlDocument xmldoc = new XmlDocument(); xmldoc.Load(Server.MapPath("products.xml")); XmlNodeList xmlnodes = xmldoc.SelectNodes("NewDataSet/Product/ProductID"); DataGrid1.DataSource = xmlnodes; DataGrid1.DataBind ();

Related Documents

Xml
June 2020 21
Xml
November 2019 35
Xml
May 2020 25
Xml
November 2019 45
Xml
November 2019 11
Xml
November 2019 13