XML / Datagrid
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

