<table visible="false" runat="server"will result in the table not to be
sent to the client. If it is not the desired effect, use css rule
display:none.
--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin http://usableasp.net
"Alexey Smirnov" <al************@gmail.comwrote in message
news:11**********************@a34g2000cwb.googlegr oups.com...
On Feb 12, 9:23 am, "Dan" <d...@d.dwrote:
>Hi,
i defined a html table with Visible="false", but i still see it in the
browser.
Why and how to hide that table?
Thanks
Dan
%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default3.aspx.vb"
Inherits="Default3" %>
<head runat="server" <title>Untitled Page</title</head>
<body>
<form id="form1" runat="server">
<table visible="false">
<tr<td>
must be hidden!
</td></tr>
</table>
</form>
</body>
</html>
<table visible="false" runat="server">