.NET Tutorials, Forums, Interview Questions And Answers
Welcome :Guest
 
Sign In
Register
 
Win Surprise Gifts!!!
Congratulations!!!



Home >> Code Snippets >> XML >> Post New Resource Bookmark and Share

 Subscribe to Code Snippets

Binding XML to Datagrid

Posted By :Deepika Haridas      Posted Date :17/12/2009   Points :10   Category: XML    URL: http://www.angeldeeps.blogspot.com
 


Binding XML to Datagrid :

In this code we'll create XML and bind it to Datagrid control.

  1. Add XML file to project (By right click on project à Add à Add New Item à XML file)

2. Now create a XML file (Here I have created a file called Students.xml

 

<?xml version="1.0" encoding="utf-8" ?>
<Students>
<student>
<ID>S0001</ID>
<Name>Deepika</Name>
<City>Ahmedabad</City>
</student>
<student>
<ID>S0002</ID>
<Name>Swati</Name>
<City>Maninagar</City>
</student>
<student>
<ID>S0003</ID>
<Name>Dhwani</Name>
<City>Gandhinagar</City>
</student>
<student>
<ID>S0004</ID>
<Name>Shweta</Name>
<City>Rajkot</City>
</student>
</Students>

3. Notice that when you have an XML file opened, the XML menu appears.

Click on the XML menu. The Create Schema will provide a graphic interface to draw the schema for the XML file. The Validate XML Schema helps you with determining if the XML content validates against a certain XML schema.

4. VS.NET tries to come up with the schema for the XML file based on its content. You can open up the schema file and graphically edit or change its definition by code.

Double-click on the Students.xsd file.

  1. By default, the Create XML Schema option defines all the fields as String. You can change it in this GUI or directly in the code representing this schema.
  2. Now add a button called "Load XML" to a webform which will populate data to gridview from xml file.

 

protected void btnload_Click(object sender, EventArgs e)
{
DataSet ds = new DataSet("Students");
ds.ReadXmlSchema(Server.MapPath(".") + "\\Students.xsd");
ds.ReadXml(Server.MapPath(".") + "\\Students.xml");
GridView1.DataSource = ds;
GridView1.DataBind();
}

 


Featured Articles


Best Practices No 5: - Detecting .NET application memory leaks
Memory leaks in .NET application have always being programmer's nightmare. Memory leaks are biggest problems when it comes to production servers. Productions servers normally need to run with least down time. Memory leaks grow slowly and after sometime they bring down the server by consuming huge chunks of memory. Maximum time people reboot the system, make it work temporarily and send a sorry note to the customer for the downtime. ... Read More
.NET Best Practice No: 1:- Detecting High Memory consuming functions in .NET code
One of the important factors for performance degradation in .NET code is memory consumption. Many developers just concentrate on execution time to determine performance bottle necks in a .NET application. Only measuring execution time does not clearly give idea of where the performance issue resides. Ok, said and done one of the biggest task is to understand which function, assembly or class has consumed how much memory. In this tutorial we will see how we can find which functions consume how much memory. This article discusses the best practices involved using CLR profiler for studying memory allocation.... Read More
How to improve your LINQ query performance by 5 X times ?
LINQ has been criticized by many early adopters for its performance issues. Well if you are just going to drag and drop using DBML code generator I am sure you will land up in to mess. Try doing this make a simple LINQ to SQL project using DBML and see your SQL profiler, I am sure you will never like to touch DBML code generator again. ... Read More
Responses

No response found. Be the first to respond this post

Post Comment
You must Sign In To post reply
Find More code samples in C#, ASP.Net, Vb.Net and more Here

Hall of Fame    Twitter   Terms of Service    Privacy Policy    Contact Us    Archives   Tell A Friend