Bonjour à tous ,
J'ai un soucie sur mon objet WebClient il ne veut pas interpreter ma page comme dans le tutorial de Mr Roux.
J'ai essayé de mettre le paramètre trick comme suivant mais rien ne change... Dans ma prorpriété result j'ai la page php non interprété.
Si quelqu'un peut m'aider
Voici le code
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 private void BuildCollection() { WebClient fu = new WebClient(); Random A = new Random(); fu.DownloadStringCompleted += new DownloadStringCompletedEventHandler(fu_DownloadStringCompleted); fu.DownloadStringAsync(new Uri(string.Format(string.Format("{0}donne.php?trick=" + A.Next(), Config.BASEPATH)))); } void fu_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e) { XDocument xmlElements = XDocument.Parse(e.Result); var elements = from data in xmlElements.Descendants("data") select new Client { Id = (int)data.Element("id"), Libelle = ((string)data.Element("libelle")).Trim() }; HtmlPage.Window.Alert("test"); Liste.ItemsSource = elements; }
Partager