Hi guys,
I know how to get my custom propities to show in my node details by editing the NodeDetails.ascx, but I was wondering if i get them not to display if the custom propity is empty.
EG.
<tr>
<td class="Property" width="10"> </td>
<td class="PropertyHeader">Nic 1 Port</td>
<td class="Property"> </td>
<td class="Property"><%#Eval("CustomProperties[\"ServerNic1_Port\"]")%> to <%#Eval("CustomProperties[\"Switch1_Port\"]")%> </td>
</tr>
<tr>
<td class="Property" width="10"> </td>
<td class="PropertyHeader">Nic 2 Port</td>
<td class="Property"> </td>
<td class="Property"><%#Eval("CustomProperties[\"ServerNic2_Port\"]")%> to <%#Eval("CustomProperties[\"Switch2_Port\"]")%> </td>
</tr>
If ServerNic2_Port to empty (only using 1 server nice), can I get it not to show? If so how?