| Line 32... |
Line 32... |
| 32 |
}
|
32 |
}
|
| 33 |
if (fromDateStr == null || fromDateStr.isEmpty()) {
|
33 |
if (fromDateStr == null || fromDateStr.isEmpty()) {
|
| 34 |
fromDateStr = iSdf.format(fromDate);
|
34 |
fromDateStr = iSdf.format(fromDate);
|
| 35 |
}
|
35 |
}
|
| 36 |
if (toDateStr == null || toDateStr.isEmpty()) {
|
36 |
if (toDateStr == null || toDateStr.isEmpty()) {
|
| 37 |
fromDateStr = iSdf.format(toDate);
|
37 |
toDateStr = iSdf.format(toDate);
|
| 38 |
}
|
38 |
}
|
| 39 |
%>
|
39 |
%>
|
| 40 |
<form id="frmSuccessfulPayments" name="frmSuccessfulPayments" method="post" action="/jsp/search-events.jsp">
|
40 |
<form id="frmSuccessfulPayments" name="frmSuccessfulPayments" method="post" action="/jsp/search-events.jsp">
|
| 41 |
<label>From Date(YYYYMMDD) : </label> <input type="text" name="fromDate" id="fromDate" value="<%= fromDateStr %>"/>
|
41 |
<label>From Date(YYYYMMDD) : </label> <input type="text" name="fromDate" id="fromDate" value="<%= fromDateStr %>"/>
|
| 42 |
<label>To Date(YYYYMMDD) : </label> <input type="text" name="toDate" id="toDate" value="<%= toDateStr %>"/>
|
42 |
<label>To Date(YYYYMMDD) : </label> <input type="text" name="toDate" id="toDate" value="<%= toDateStr %>"/>
|