Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3962092
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T03:03:17+00:00 2026-05-20T03:03:17+00:00

I am kinda stuck about this problem. How can I get the month calendar

  • 0

I am kinda stuck about this problem.
How can I get the month calendar saturday values when i selected a specific date.

For example: i selected February 14 on the month calendar. After selecting it there will be a prompt which contains Saturday “February 19, 2011” or i selected February 24, The prompt will display “February 26 2011”.

enter image description here

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T03:03:18+00:00Added an answer on May 20, 2026 at 3:03 am
    // This function will return the next saturday for a datetime
    DateTime NextSaturday(DateTime now)
    {
       while (now.DayOfWeek != DayOfWeek.Saturday)
          now = now.AddDays(1);
       return now;
    }
    

    UPDATE

    After almost 2 years I want to change this answer.

    These days I would never create a “utility function” for a class. I now always “extend” the class. The signature should now be DateTime.Next(DayOfWeek). See http://msdn.microsoft.com/en-us/library/vstudio/bb383977.aspx for more details on extensions.

    Also the logic is wrong. If now is a Saturday then it would always return the current date. I think most callers would expect it return now + 7 days. So the first change is:

    DateTime NextSaturday(DateTime now)
    {
       do {
          now = now.AddDays(1);
       } while (now.DayOfWeek != DayOfWeek.Saturday)
    
       return now;
     }
    

    Then change the function to work with any day of the week:

    DateTime Next(DateTime now, DayOfWeek nextDay)
    {
       do {
          now = now.AddDays(1);
       } while (now.DayOfWeek != nextDay)
    
       return now;
     }
    

    Now “extend” the DateTime class to support Next(DayOfWeek)

     namespace DateTime.Extensions
     {
       public static class DateTimeExtensions
       {
         public static DateTime Next(this DateTime now, DayOfWeek nextDay)
         {
            do {
              now = now.AddDays(1);
            } while (now.DayOfWeek != nextDay)
    
            return now;
          }
       }
     }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm kinda stuck on this decision. My project already uses Spring and Spring Blazeds
sorry about this, I'm normally fine with HTML/CSS, but I'm stuck on this. Basically,
I'm stuck in a bit of dilemma on how to get around this and
http://support.microsoft.com/kb/953102 We spent about 50 hours during Christmas holiday to identify this problem, causing
Kinda stuck here... I have an application with lets say 5000 rows of data
I'm kinda stuck with something which must be appalingly simple. I'm trying to write
I've attached a source file below, I'm kinda stuck. Basically, its an FLA that
I kind of stuck on how to implement this query - this is pretty
I am stuck in how to parse this kind of XML (with same element
I am kinda stuck, I've been using Django for a while now, but I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.