This project will be written in C# as an ASP.NET webpage. The page will use the classes in the attached Class Diagram to determine which SplashScheduleItem is active for today and will redirect the requesting user to the correct URL.
The sequence of events will be something like this:
Page_Onload schedule = SplashScheduleController.getSplashSchedule()
if( this user has never been here before){ Response.Redirect( schedule.getFirstTimeVisitorSplash() ) }else{ Response.Redirect( schedule.getCurrentScheduledSplash() ) }
You will need to interpret this code and use error trapping where appropriate. Additional information: Submitted on 05/06/2008 at 14:22 EST Added the Class Diagram Additional information: Submitted on 05/06/2008 at 14:25 EST Readded the Class Diagram |