Hi there, + To display the xml data in a datagrid control, you first need to create a datasource that represents xml data, then bind it to the datagrid. The datasource can be a dataset or a custom array object, you can take a look at the link below to see how to infer a dataset from XML: http://msdn.microsoft.com/library/en-us/cpguide/html/cpconinferringcolumns.asp[^] If you want to create a custom array object, you can simply parse the xml document and initialize the custom object. + Another way to display xml data is to use the XML server control instead of the datagrid control, but you have to specify the xsl stylesheet for transforming. Just some ideas.