|
The Newburgh Extension
Center (NEC) Bookstore Service is open at the start of each semester
and makes available books and materials used for courses taught at that location.
<%
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open "occcbookstore"
sql = "select * from [occc-ppack-options]"
sql = sql & " order by [return-end]"
set rs = conn.execute(sql)
while not rs.eof
%>
Books for the <%=rs("semester")%> semester will be available
starting <%=formatdatetime(rs("store-avail"),1)%>. Only books purchased after that date
will be eligible for exchange or return during the current term period.
Bookstore Credit begins <%=formatdatetime(rs("fa-start"),1)%> and ends <%=formatdatetime(rs("fa-end"),1)%>.
Returns and Exchanges accepted
through <%=formatdatetime(rs("return-end"),1)%>. After that date, all
sales are final and no further returns or exchanges are allowed.
<%rs.movenext
wend
rs.close
conn.close
set conn=nothing
%>
Book Buy-Backs are scheduled at the beginning, middle and end of the term.
Check our Buy-Back Schedule for exact
dates and times.
|