Click here to Skip to main content
15,895,777 members
Articles / Web Development / ASP.NET

SharePoint Page Navigation Web Part

Rate me:
Please Sign up or sign in to vote.
4.56/5 (4 votes)
25 Mar 2009CPOL6 min read 127.3K   540   19  
Web Part for users to drop on their pages for navigation across the site collection.
using System;
using System.Collections.Generic;
using System.Text;

namespace Mullivan.SharePoint.Reminders
{
    public class RmdDailyRecurrence : RmdRecurrence
    {
        public override string Name
        {
            get { return "Daily"; }
        }

        public int StartHour
        {
            get;
            set;
        }

        public override bool CanRun(DateTime lastRun)
        {
            DateTime dtNow = DateTime.Now;

            //If never run then run
            if (lastRun.Equals(DateTime.MinValue))
                return true;

            //If there is an day between the two then it needs to run
            if (dtNow.Subtract(lastRun).Days > 1)
                return true;

            if (dtNow.Day == lastRun.Day)
            {
                //If now is greater than the start hour and the
                // last run hour is less than the start hour then return true
                if (dtNow.Hour >= this.StartHour &&
                    lastRun.Hour < this.StartHour)
                    return true;
            }
            else if (dtNow.Hour >= this.StartHour)
                return true;

            return false;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions