Advertisement
Advertisement
| 03.25.2008 at 04:54AM PDT, ID: 23266620 |
|
[x]
Attachment Details
|
||
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: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: |
<logic:present name="TransmitterUserDetailsForm" property="publicKeyParams">
<tr>
<td colspan="2">
<TABLE class="details" id="usertable" border="1">
<COL WIDTH="20%" style="word-wrap:break-word">
<COL WIDTH="40%" style="word-wrap:break-word">
<COL WIDTH="20%" style="word-wrap:break-word">
<COL WIDTH="20%" style="word-wrap:break-word">
<tr>
<td>
<b><bean:message key="SecureTransportAs2.PublicKeyName"/></b>
</td>
<td>
<b><bean:message key="SecureTransportAs2.PublicKeyText"/></b>
</td>
<td>
<b><bean:message key="SecureTransportAs2.PublicKeyEnterDate"/></b>
</td>
<td>
<b><bean:message key="TransformStep.Actions"/></b>
</td>
</tr>
<logic:iterate id="idSearchTransformDetails" name="TransmitterUserDetailsForm" property="publicKeyParams">
<logic:notEqual name="idSearchTransformDetails" property="publicKeyText" value="NULL">
<tr>
<td>
<bean:write name="idSearchTransformDetails" property="publicKeyName" />
<html:hidden name="idSearchTransformDetails" property="publicKeyId" />
</td>
<td>
<bean:write name="idSearchTransformDetails" property="publicKeyText"/>
</td>
<td>
<bean:write name="idSearchTransformDetails" property="publicKeyEnterDate"/>
</td>
<td>
<a href="javascript:DeleteAction('<bean:write name="idSearchTransformDetails" property="publicKeyName"/>')"
tabindex="16">
<img src="<%=contextPath%>/assets/images/autogen/delete.gif" border=0></a>
</td>
</tr>
</logic:notEqual>
</logic:iterate>
|