Hello, I have a XML file with parts information, which includes Part Name, Description, and Image. I am using Linq to XML to load and parse XML file, I bind results to a GridView control with allow paging enabled. It is giving message that the source for GridView control does not support Server Side paging. How do I convert it or set it up as DataSet or Dataview so I can use the paging in Gridview? Here is the Code; Code Snippet string xFile = XDocument .Load( "products.xml" ).ToString(); XDocument
Read More...