I\'m attempting to recreate a time sheet built on asp and I can\'t figure out how to get the current weeks starting date \"6-13-2010\" and have it populate a combo box can you h
DateTime startOfWeek = Today.AddDays((int)Today.DayOfWeek * -1)
Likely an off by one error, since it is untested.