Thursday, March 5, 2009

Hide and Show table asp.net c# 2.0 3.5

Hide and Show table asp.net c# 2.0 3.5

Html
<table id="tab1"  runat="server">

code Behind to hide
tab1.Visible = false;
code Behind to show
tab1.Visible = true;
 

No comments: