vote up 0 vote down star

Hi Guys,

I have 2 dropdowns 1 with weeknumbers 1 with years. I want to extract the date range from this data.

So:

Weeknumber 13 year 2009 would give:

monday 23 march 2009 tuesday 24 march 2009 ...

VB.Net preferred but C# sollution is also ok.

Edit: Ok I guess I should have mentioned this is for European dates.

flag

57% accept rate

1 Answer

vote up 1 vote down
CultureInfo curCulture = CultureInfo.CurrentCulture;

DateTime targetDate = curCulture.Calendar.AddWeeks(new DateTime([year], 1, 1), [Week]);

DayOfWeek targetWeekDay =
    curCulture.Calendar.GetDayOfWeek(targetDate);

DateTime targetBeginningOfWeek = targetDate.AddDays(-1*Convert.ToInt16(targetWeekDay));

targetBeginningOfWeek will contain first day of that week, add 7 days and get rest of day in that week

link|flag
Earlier one was incomplete updated one should be helpful – Brijesh Mishra Mar 29 at 12:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.