Hi-<BR>I have a button which calls a subroutine that should set a table cell's 'Visible' property to True. Below are the relevant pieces of code. <BR>I can't figure out how to take the command string passed by the button, and reference an object of that name. What you see below doesn't work, but it should at least show you what I am trying to do. Any help is greatly appreciated.<BR>-mac<BR><BR><asp:LinkButton id="General" CommandName="GeneralForm" Text="General" OnCommand="EventProperties_Click" runat="server" /><BR><BR>Sub EventProperties_Click(sender As Object, e As CommandEventArgs) <BR>Dim myObj As Object = e.CommandArgument<BR>'myObj.Visible = True<BR>End Sub<BR><BR><table><tr><BR><td id="GeneralForm" Visible="False"><BR>table cell content here...<BR></td><BR></tr></table>