[Message Deleted]
-
[Message Deleted]
-
[Message Deleted]
Bibhash Mishra wrote:
i have already googling to find the source but not able to find any suitable RSS
why do you need RSS for this? you can do it your self. start with your location (where your server is located) and then calculate the time difference for every city you want to show.
Yusuf Oh didn't you notice, analogous to square roots, they recently introduced rectangular, circular, and diamond roots to determine the size of the corresponding shapes when given the area. Luc Pattyn[^]
-
Bibhash Mishra wrote:
i have already googling to find the source but not able to find any suitable RSS
why do you need RSS for this? you can do it your self. start with your location (where your server is located) and then calculate the time difference for every city you want to show.
Yusuf Oh didn't you notice, analogous to square roots, they recently introduced rectangular, circular, and diamond roots to determine the size of the corresponding shapes when given the area. Luc Pattyn[^]
Yes, i would agree with that. In fact this is a perfect thing to use the new dynamic list & linq features for. Somthing like : public class timeEntry { Public String name = ""; Public DateTime time = DateTime.now(); } then make a list of timeEntrys List myList = new List() { new timeEntry(){ name = "London", time = DateTime.Parse("1/1/1 00:00:00") }, new timeEntry(){ name = "Paris", time = DateTime.Parse("1/1/1 01:00:00") }, ... and so on ... }; You can then assign it to a datagrid or anything else in code by using the following : var timeList = from p in myList select p; gridView1.DataSOurce = timeList; gridView1.DataBind(); As your making the list by hand, you can apply what ever maths you want to apply in the relevent areas of the constructor.
-
Bibhash Mishra wrote:
i have already googling to find the source but not able to find any suitable RSS
why do you need RSS for this? you can do it your self. start with your location (where your server is located) and then calculate the time difference for every city you want to show.
Yusuf Oh didn't you notice, analogous to square roots, they recently introduced rectangular, circular, and diamond roots to determine the size of the corresponding shapes when given the area. Luc Pattyn[^]
Hello Yusuf, Thanks for the reply but i have a problem i can't use server location for showing time, it vary.i have already shown weather and news reading with Rss
modified on Friday, March 13, 2009 2:03 AM