tags:

views:

32

answers:

1

I have taken table inside that i have taken the row. in design mode when i make the visibility of row as false then there is pair of line comes which represents like there is row.

How to make this line invisible when row visibility is false.

In case of Internet explorer the pair of line not come when rows visibility is false. same things i want to do with mozilla firefox .How to do that?

+1  A: 

Shalni from the line you say , you need to do it

<tr visible="false" runat="server" id="tr1">

on code behind

tr1.visible=true;
Aristos
This permanently make invisible to that row but i have to make it invisible in certain condition. so i have to make it invisible according to the condition.
Shalni
@Shalni you place an id to the tr, and you change it.
Aristos
nice answer...........
Shalni