How retrieve data from my website ?
I have a small market place in my website so I want to development a small app for retrieve and check data for example find a transaction or the email of a client and to show this data in a datagridview, this the the html code of a transaction :
<tr class="result status_Completed">
<td><a href="/sale-detail.php?id=14056"><img src="/images/leon-icon-16x16.png" title="transaction details" border="0"></a></td>
<td><a href="/sale-detail.php?id=14056">[email protected]</a><br>
<span style="font-size: 75%;"><strong>item #:</strong> <em>2774125</em></span>
</td>
<td>2011-12-01 12:42</td>
<td>$17.00</td>
<td>Completed</td>
<td class="cntr">2</td>
<td></td>
<td><strong>David chong</strong></td>
</tr>
For example I want to show the data in the datagridview like this:
Email date amount name
Can you help me?
Re: How retrieve data from my website ?
do you have direct access to the database?
if you do, your best bet is to create a script that gets data from the database and outputs it in XML.
Then, use XDocument to read through the XML and output the required data.