Posts

Showing posts from June, 2016
Image
Uploading video on Youtube from our .net website Video 1 Video 2 Video 3 Video 4 Video 5

Managinng Date and Time of Indian Timezone for US Servers with Asp.Net C# code

TimeZoneInfo INDIAN_ZONE = TimeZoneInfo.FindSystemTimeZoneById("India Standard Time"); DateTime indianTime = TimeZoneInfo.ConvertTimeFromUtc(DateTime.UtcNow, INDIAN_ZONE); string date1 = indianTime.ToShortDateString();                          string currentdate = Convert.ToDateTime(date1, CultureInfo.CurrentCulture).ToString("M/d/yyyy");