Tuesday, August 19, 2008

Time Zone Drop down using C#.NET

TimeZoneInformation[] arrTzi = TimeZoneInformation.EnumZones();
ddlTimeZone.DataSource = arrTzi; //ddlTimeZone is id of the asp:dropdownlist
ddlTimeZone.DataBind();

No comments:

Post a Comment