Table help
-
Gday everyone I have a new problem that I really need someone help I need to make visibility of a table at runtime depending on user to click on a button to show it or not. Please guide me how to do it Thanks so much
eric
-
I would consider using a PlaceHolder control. If this wraps your table you should be able to set the placeholder control visible or not in the code behind page. You might need to nest it:
...
Hope that helps. Ben
-
Gday everyone I have a new problem that I really need someone help I need to make visibility of a table at runtime depending on user to click on a button to show it or not. Please guide me how to do it Thanks so much
eric
Hi, You can use ASP Table control. So that you can set visible attribute to true or false.
To succeed, we must first believe that we can. Sherin Iranimose
-
Gday everyone I have a new problem that I really need someone help I need to make visibility of a table at runtime depending on user to click on a button to show it or not. Please guide me how to do it Thanks so much
eric
Easy way could be making the table
runat="server"
. Then you can access this from codebehindNavaneeth My Website
-
Gday everyone I have a new problem that I really need someone help I need to make visibility of a table at runtime depending on user to click on a button to show it or not. Please guide me how to do it Thanks so much
eric
-
Gday everyone I have a new problem that I really need someone help I need to make visibility of a table at runtime depending on user to click on a button to show it or not. Please guide me how to do it Thanks so much
eric
Personally I like to use panels. I just place the tables and all other controls in it and then display the panel when I want to.
The only way to speed up a Macintosh computer is at 9.8 m/sec/sec.
-
Gday everyone I have a new problem that I really need someone help I need to make visibility of a table at runtime depending on user to click on a button to show it or not. Please guide me how to do it Thanks so much
eric
Just make the table runat="server" and then use uts visibility property and set it to true or fals according to your needs.