× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Ideally you'd have some business objects such that you could do:

Teacher t = GetTeacherSomehow();
List<Courses> courses = t.GetCoursesForDate(DateTime.Today);
rptCourseList.DataSource = courses;
rptCourseList.DataBind();

Where rptCourseList is a repeater on your form.

Actually I can see it being a common request to get courses for "today", so I'd actually add a GetTodaysCourses() method on the Teacher class just as a shortcut. Along the lines of

List<Courses> GetTodaysCourses()
{
return this.GetCoursesForToday(DateTime.Today);
}

Of course, the other option to using DateTime would be to use the business object that represented your calendar table. Then you could do stuff like:

SchoolDay.Today.AorBDay to find out if it's an A day or B day. Or SchoolDay.Parse('4/22/09').AorBDay to find out if April 22nd was an A or B day.


-Walden


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.