XML / Datagrid

I am having some trouble getting an XML docs data into a datagrid. The XML doc has attributes for each record but I could care less about those, I just need to be able to sort through the data, and I thought using a datagrid would be the best way.

I have tried using the following code but all that is displayed is a table with 3columns and none of the data I need:
<code>
Dim myDataSet As New DataSet
myDataSet.ReadXml(Server.MapPath("FTP Access Log_22704.xml"))
dgLog.DataSource = myDataSet.Tables("row")
dgLog.DataBind()
</code>

And here is a snippet of the XML:
<?xml version="1.0" encoding="UTF-8"?>
<response>
<data>
<row number="1">
<OperatorID type="s" parent="1" title="Operator ID">uti</OperatorID>
<Action type="s" parent="1" title="Action">LOGON</Action>
<Source type="s" parent="1" title="Source">FTPSERVER</Source>
<RemoteIP type="s" parent="1" title="RemoteIP">172.20.47.2</RemoteIP>
<InsertedOn type="t" parent="1" title="InsertedOn">1077667872000</InsertedOn>
<Success type="b" parent="1" title="Success">0</Success>
</row>
</data></response>
Thanks in advance
[1298 byte] By [ahbenshaut] at [2007-11-18 20:43:11]