Link to home
Start Free TrialLog in
Avatar of aaalife
aaalifeFlag for United States of America

asked on

displaying current weather in c#

hi all, i've got an intranet page displaying sales which is being viewed in 2 different cities.    the page is refreshed every 3 minutes with updated sales data.  i would like to add a current weather icon and temperature display for both cities.

i found this on msdn to dispaly temperature:
temp.temperatureservice foo = new temp.temperatureservice();
label1.text = foo.gettemp("63042").ToString();

but i need to display a pic of current weather as well (clouds/sun/rain...).  is there a service out there that will provide a pic and number for current weather/temperature??

thanks in advance
Avatar of YZlat
YZlat
Flag of United States of America image

Avatar of aaalife

ASKER

link only provides temp as icon, which i already have.  i need both temp and pic/icon of current weather (sunny/rainy/snowy...).
ASKER CERTIFIED SOLUTION
Avatar of pallosp
pallosp

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial