4
Answers

Find day of the week by inserting date in format dd/MM/yyyy

Anele Ngqandu

Anele Ngqandu

13y
2k
1

Hi guys
 
I want to get day of the week by inserting the date but using format dd/MM/yyyy
 
Now this is what i did..
 
Session["StartDate"]=09/10/2011
string ddMMyyyyFormat = Session["StartDate"].ToString();//Date in dd/MM/yyyy
string MMddyyyFormat =Convert.ToDateTime(ddMMyyyyFormat).ToString("MM/dd/yyyy");
                    
DateTime MMddyyyyDate = Convert.ToDateTime(MMddyyyFormat);
string dayOfWeek = MMddyyyyDate.DayOfWeek.ToString();
 
Now i get the day of the week as "Saturday" because its not converted to format MM/dd/yyyy

Answers (4)