Yasserzaid’s Weblog

January 27, 2012

Find Date between Two Date Range

Filed under: ASP.Net — yasserzaid @ 7:20 pm

Hi all,

try this example to find Date between two dates Range

for example i want to display all date of  Saturday and Sunday between two dates


protected void Page_Load(object sender, EventArgs e)
 {
 if (!IsPostBack)
 {
 DateTime startDate = new DateTime(2011, 3, 1);
 DateTime endDate = DateTime.Now;
 TimeSpan diff = endDate - startDate;
 int days = diff.Days;
 for (var i = 0; i <= days; i++)
 {
 var testDate = startDate.AddDays(i);
 switch (testDate.DayOfWeek)
 {
 case DayOfWeek.Saturday:
 case DayOfWeek.Sunday:
 Response.Write(testDate.ToShortDateString()+"<br/>");
 break;
 }
 }
 }
 }

Hope this helps

Good Luck

Advertisement

Leave a Comment »

No comments yet.

RSS feed for comments on this post. TrackBack URI

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Theme: Silver is the New Black. Blog at WordPress.com.

Follow

Get every new post delivered to your Inbox.