public MainPage() { InitializeComponent(); PageTitle.Text = "Latest News"; lync = "http://www.tmd.go.th/xml/weather_report.php?StationNumber=48303"; WebClient _client = new WebClient(); _client.DownloadStringCompleted += Feed; _client.DownloadStringAsync(new Uri((lync))); SupportedOrientations = SupportedPageOrientation.Portrait | SupportedPageOrientation.Landscape; } private string lync; private void Feed(object Sender, DownloadStringCompletedEventArgs e) { FeedItem _item = new FeedItem(); string descrp = ""; XElement _xml; try { if (!e.Cancelled) { _xml = XElement.Parse(e.Result); Results.Items.Clear(); foreach (XElement value in _xml.Elements("channel").Elements("item")) { _item.Title = value.Element("title").Value; descrp= Regex.Replace(value.Element("description").Value, @"<(.|\n)*?>", String.Empty); _item.Link = value.Element("link").Value; _item.Guid = value.Element("guid").Value; _item.Published = DateTime.Parse(value.Element("pubDate").Value); Results.Items.Add(_item); } } } catch { // Ignore Errors } }
WebClient client = new WebClient (); // Optionally specify an encoding for uploading and downloading strings. client.Encoding = System.Text.Encoding.UTF8;
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง