1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| <tr>
<td width="20%">
<font color="#A36732">Date de dépose :</font>
</td>
<td colspan="3">
<%
StrDateDepose= StringHelper.replaceNull (StrDateDepose, "");
StrDateDepose = StringHelper.replaceSpecialChar (StrDateDepose);
%>
<input name="DATEDEPOSE" type="text" value="<%=StrDateDepose%>" maxlength="15"readonly width="15">
<input type="button" name="calendrier2" style="background-image:url('./../images/calendar.png')"; onclick="displayCalendar(document.UPDATE.DATEDEPOSE,'dd/mm/yyyy',this)" title="Cliquer pour afficher le calendrier" />
</td>
</tr>
<tr>
<td width="20%">
<font color="#A36732">Date de renouvellement :</font>
</td>
<td colspan="3">
<%
StrDateRenouv= StringHelper.replaceNull (StrDateRenouv, "");
StrDateRenouv = StringHelper.replaceSpecialChar (StrDateRenouv);
%>
<input name="DATERENOUV" type="text" value="<%=StrDateRenouv%>" maxlength="15"readonly width="15">
<input type="button" name="calendrier3" style="background-image:url('./../images/calendar.png')"; onclick="displayCalendar(document.UPDATE.DATERENOUV,'dd/mm/yyyy',this)" title="Cliquer pour afficher le calendrier" />
</td>
</tr> |
Partager