<%
'********************************************************************
' Name: Events.asp
'
' Purpose: Used to add and remove events from the event database.
'
'********************************************************************
dim dbConn, rs, nDex, nMonth, nYear, dtDate, dtTemp
' Get the current date
dtDate = Now()
' Set the Month and Year
nMonth = Request("nMonth")
nYear = Request("nYear")
if nMonth = "" then nMonth = Month(dtDate)
if nYear = "" then nYear = Year(dtDate)
Set dbConn = GetDataConnection
Set rs = dbConn.Execute ("GetSchedule " & nMonth & ", " & nYear)
DoHeader("Add/Remove Events")
%>
Back to Calendar