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 = DateTime.Today.AddDays(-1 * (int)(DateTime.Today.DayOfWeek));
Regarding adding items to a DropDownList in ASP.NET, assuming you're using the webforms model, you would do something like
yourDropDown.Items.Add(new ListItem(yourText, yourValue));