M
Mike Mueller
I am in the process of converting to the use of a dynamic page using a
database for the information. The database has fields of EventDate
(Time/Date field), Event Month-EventDay(Both as numbers) and EventDetail. I
am using asp to determine the current month (CurMonth = Month(Date)). The
trouble I am having is using the variable in the SQL statement. Here is
waht I have for starters...
SELECT Main.EventDate, Main.EventDetail
FROM Main
WHERE (((Main.EventMonth)= &CurMonth &));
database for the information. The database has fields of EventDate
(Time/Date field), Event Month-EventDay(Both as numbers) and EventDetail. I
am using asp to determine the current month (CurMonth = Month(Date)). The
trouble I am having is using the variable in the SQL statement. Here is
waht I have for starters...
SELECT Main.EventDate, Main.EventDetail
FROM Main
WHERE (((Main.EventMonth)= &CurMonth &));