Ejemplo n.º 1
0
        protected void ExportToCalendar(object o, EventArgs e)
        {
            string desc = "Click here to view goal: " + ConfigurationManager.AppSettings["BASEURL"] + "/Goals/" + CurrentGoal.ID.ToString();

            HttpPageHelper.ExportToCalendar((DateTime)CurrentGoal.DueDate, (DateTime)CurrentGoal.DueDate, "TBD", desc, "Goal:" + CurrentGoal.Title + " is due!!");
        }
Ejemplo n.º 2
0
        protected void ExportToCalendar(object o, EventArgs e)
        {
            string desc = "Follow up on comment left by " + CurrentComment.EnteredByRef.Name + ".  Click here to view comment: " + ConfigurationManager.AppSettings["BASEURL"] + "/Comments/" + CurrentComment.ID.ToString();

            HttpPageHelper.ExportToCalendar((DateTime)CurrentComment.FollowUpDate, (DateTime)CurrentComment.FollowUpDate, "TBD", desc, "Follow Up Construct Comment For " + CurrentComment.EnteredForRef.Name);
        }