Click here to Skip to main content
15,883,883 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

I want to retrieve the last four weeks from the current date and then add it to the dropdown list box weekwise. Can any one help me. Or just give me the sample code for doing this by explaining it. I got some solutions but little bit confused about it. Please help me.


Thanks in advance.....
Posted
Comments
snorkie 14-Dec-12 9:20am    
Do you want help for C# or javascript?
rp786 14-Dec-12 23:41pm    
Both the answers are most welcome. But first preference is for c#. :-)

1 solution

C#
DateTime lastWeek = DateTime.Now.AddDays(-7);
DateTime last2Week = DateTime.Now.AddDays(-14);
DateTime last3Week = DateTime.Now.AddDays(-21);
// ... you get the point
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900