locked
Create live tile with URLs RRS feed

  • Question

  • Hi i have developed a windows 8.1 app for my website. I have published some web pages on iis7 and have the URLS of the web pages. I want to create live tiles of those URLs , I know it can be done in setpollsURLs method in app.xaml file but how that i dont know. Can anyone help me please ? 

     public static void SetPollUrls(params string[] _pollUrls)
            {
                urisToPoll = new List<Uri>();
                foreach(string url in _pollUrls)
                {
                    if (string.IsNullOrEmpty(url))
                        continue;
                    try
                    {
                        urisToPoll.Add(new Uri(url));
                    }
                    catch (Exception)
                    {
                        // The URLs need to be well formed. 
                    }
                }
            }

    Thanks in advance :)


    \m/

    Thursday, May 22, 2014 7:56 AM

All replies