Make rows invisible easier?

  • Thread starter Thread starter dik
  • Start date Start date
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...
 
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?
 
Back
Top