| |
|
|
|
<%
Calendar now = Calendar.getInstance();
int intMonth = now.get(Calendar.MONTH);
int nowYear = now.get(Calendar.YEAR);
int intYear = now.get(Calendar.YEAR);
String app_year = request.getParameter("app_year"); // str
String app_month = request.getParameter("app_month"); // str
String sYear = request.getParameter("year"); // str
if ( app_year != null ){
intYear = Integer.parseInt(app_year);
}else if ( sYear != null ){
intYear = Integer.parseInt(sYear);
}else{
intYear = now.get(Calendar.YEAR);
}
if ( app_month != null ){
intMonth = Integer.parseInt(app_month);
}else{
intMonth = now.get(Calendar.MONTH)+1;
}
%>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
 |
|
 |
|
|
We can now accept membership applications
on-line. Invoices are sent out after your membership... |
|
|
| |
|