I have an ASP.NET page where I want to display a table after the users clicks a button. I have the table hidden when it loads but can't figure out how to unhide it. I was trying this tblQty.style.visiblity="visible", but it errors out. How can I make it visible using VB?
Thanks in advance,
mapman04
Here's my table:
<table ID="tblQty" border="0" cellspacing="0" cellpadding="0" style=visibility:Hidden>
<tr ID="tbQt1">
<td><asp:Label id="lblQty" runat="server" Text="Enter Quantity: " /></td>
<td><asp:TextBox id="txtQty" CssClass="textbox" runat="server" Text/></td>
</tr>
</table>
Thanks in advance,
mapman04
Here's my table:
<table ID="tblQty" border="0" cellspacing="0" cellpadding="0" style=visibility:Hidden>
<tr ID="tbQt1">
<td><asp:Label id="lblQty" runat="server" Text="Enter Quantity: " /></td>
<td><asp:TextBox id="txtQty" CssClass="textbox" runat="server" Text/></td>
</tr>
</table>