How can I hide or show the value contained inside a TD tag?
E.g:
<td id="dateCell<%= i %>">
<%= Html.Encode(row.ActionOn.HasValue ? Html.FormatDateTime(row.ActionOn.Value) : Html.Encode("")) %>
</td>
How can I get the encoded value and hide or show it depending on a condition?