Make rows invisible easier?

D

dik

Hi

I have a lot of rows in my page (see below a sample). How can I make 3 rows invisible/visible at the same time in a group instead of row for row? Is this possible?

<asp:Table id="Table1" runat="server" Width="824px" Height="248px">
<asp:TableRow>
<asp:TableCell ColumnSpan="4">
<asp:Label id="lbl2" Runat="server"></asp:Label></b>
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>
Hello
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>
name
</asp:TableCell>
<asp:TableCell>
<asp:Label id="lbl1" Runat="server"></asp:Label>
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>
<b>Name</b>
</asp:TableCell>
<asp:TableCell>
<asp:TextBox ID="txt1" Runat="server"></asp:TextBox>
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell ColumnSpan="4">
<hr>
</asp:TableCell>
</asp:TableRow>
</asp:Table>


ch Jim

**********************************************************************
Sent via Fuzzy Software @ http://www.fuzzysoftware.com/
Comprehensive, categorised, searchable collection of links to ASP & ASP.NET resources...
 
J

Jimmy

you mean an asp:panel right?
intrader said:
Enclose them in a div, then make the div invisible.
On Tue, 21 Jun 2005
rows invisible/visible at the same time in a group instead of row for row?
Is this possible?
 

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