How to Import Data from XML to GridView
In this tutorial i will let you know how to import data from xml to gridview.In this first we have to upload the xml file , after upload the file will be worked as a data source for gridview and it will be shown in gridview.
Design For XML to GridView:-
01 | <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> |
06 | < style type = "text/css" > |
14 | < form id = "form1" runat = "server" > |
16 | < table align = "center" class = "style1" > |
19 | Choose Your XML File:-< asp:FileUpload ID = "FileUpload1" runat = "server" /> |
20 | |
21 | < asp:Button ID = "Button1" runat = "server" OnClick = "Button1_Click" Text = "Upload" /> |
22 | |
23 | < asp:Label ID = "Label1" runat = "server" ></ asp:Label > |
28 | < asp:GridView ID = "GridView1" runat = "server" BackColor = "White" BorderColor = "#CCCCCC" |
29 | BorderStyle = "None" BorderWidth = "1px" CellPadding = "4" ForeColor = "Black" GridLines = "Horizontal" |
31 | < FooterStyle BackColor = "#CCCC99" ForeColor = "Black" /> |
32 | < HeaderStyle BackColor = "#333333" Font-Bold = "True" ForeColor = "White" /> |
33 | < PagerStyle BackColor = "White" ForeColor = "Black" HorizontalAlign = "Right" /> |
34 | < SelectedRowStyle BackColor = "#CC3333" Font-Bold = "True" ForeColor = "White" /> |
35 | < SortedAscendingCellStyle BackColor = "#F7F7F7" /> |
36 | < SortedAscendingHeaderStyle BackColor = "#4B4B4B" /> |
37 | < SortedDescendingCellStyle BackColor = "#E5E5E5" /> |
38 | < SortedDescendingHeaderStyle BackColor = "#242121" /> |
Code For XML to GridView:-
02 | using System.Collections.Generic; |
05 | using System.Web.UI.WebControls; |
09 | public partial class _Default : System.Web.UI.Page |
11 | protected void Page_Load( object sender, EventArgs e) |
15 | protected void Button1_Click( object sender, EventArgs e) |
18 | if (FileUpload1.HasFile) |
20 | string filename = Path.GetFileName(FileUpload1.PostedFile.FileName); |
21 | string filextension = Path.GetExtension(FileUpload1.PostedFile.FileName); |
22 | if (filextension == ".xml" ) |
25 | pathname = Server.MapPath( "xmlfiles/" + filename); |
26 | FileUpload1.PostedFile.SaveAs(pathname); |
27 | DataSet ds = new DataSet(); |
28 | ds.ReadXml(Server.MapPath( "~/Xmlfiles/" +FileUpload1.FileName)); |
29 | GridView1.DataSource = ds; |
34 | Response.Write( "Not a valid XML file" ); |
Read data from XML
Enjoy:)