I have a
<table>
<tbody>..some stuff</tbody>
<tbody id="sometimesHidden" runat="server">...</tbody>
</table>
But the .cs code says "The name 'sometimesHidden' does not exist in the current context" when I try to call sometimesHidden.Visible = false;.
Is it possible to get hold of the tbody in server side code?
sometimesHidden.Visible? – sll Dec 7 '11 at 10:34