thanks for the insight. this calendar class is bugging me, i may just use the deprecated functions.
Code:
<%
Calendar c = Calendar.getInstance();
java.util.Date dt = new java.util.Date();
c.setTime(dt);
out.println(String.valueOf(c.MONTH));
%>
This prints 2, but since this month is july, it should print 6. What am I doing wrong?