Hi All,
I am getting wrong date when I am using DateTime.Parse function. The following is the code..
DateValue = DateTime.Parse( datarow[column1].ToString()).To String("MM/dd/yyyy");
I am taking the data from a proc keeping it in a datarow. While displaying the value I am getting the date value one less then it is in the DB. e.g. 3/31/2010 values comes as 3/30/2010 (for some timezone). This is a code written...