Please I need help in my issue!
I have the following link ; which stored specific numbers (data) I will use it in my windows phone application. http://jaradat.eb2a.com/read.php
How I can read the latest number stored in the link (this number will change) ; and show it in my windows phone application.
Should I use the webclient to access the data in url like the following ?
WebClient wc = new WebClient();
wc.DownloadStringCompleted += HttpCompleted;
wc.DownloadStringAsync(new Uri("http://jaradat.eb2a.com/read.php"));
private void HttpCompleted(object sender, DownloadStringCompletedEventArgs e)
{
if (e.Error == null)
{
// do something here
}
And How I can read the latest value in the link ? should divide it to tokens ?