DateTime date = DateTime.Now; int count = Convert.ToInt16(date.DayOfWeek); date.AddDays(-count); // Gives the day of the week Response.Write(date.DayOfWeek);
Login to post response