I am trying to come up with an idea on writing an effective script (ASP) to compare the date to another date hard-coded in and return the correct info. It is for a baseball teams website to list where each team is each day. My idea is to have it scroll across in a marquis if it's possible.
Here's my thought process:
varToday = Date() 'store todays date in variable
Select Case varToday
Case 03/30/05
Freshmen vrs. Ballard (A) 6:30
JV - idle
Varsity vrs. Ballard (H) 4:30
Case 03/31/05
Freshman vrs. Eastern (H) 4:30
JV vrs. Eastern (H) 7:00
Varsity vrs. Eastern (A) 4:30
End Select
I know there is more to it than that, but I am not sure how to proceed. Can it be done in a scrolling marquis? I am not using a db at this time - it will be hard-coded.
coachdan32
Here's my thought process:
varToday = Date() 'store todays date in variable
Select Case varToday
Case 03/30/05
Freshmen vrs. Ballard (A) 6:30
JV - idle
Varsity vrs. Ballard (H) 4:30
Case 03/31/05
Freshman vrs. Eastern (H) 4:30
JV vrs. Eastern (H) 7:00
Varsity vrs. Eastern (A) 4:30
End Select
I know there is more to it than that, but I am not sure how to proceed. Can it be done in a scrolling marquis? I am not using a db at this time - it will be hard-coded.
coachdan32