why is this html table still visible?

D

Dan

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>
 
A

Alexey Smirnov

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">
 
J

Japan Shah

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>

Hi Dan,
what you can do to hide the table under ASP.NET
go to the HTML view of it and write the following code below your
table

<% IF condtion Then %>
<table visible="false">
<tr> <td>
must be hidden!
</td></tr>
</table>
<% END IF %>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top