Tuesday, August 27, 2013

to hide or un hide a panel at server side in asp.net

To hide and un hide a panel in asp.net,
use the following code block

pnl.Attributes.Add("style", "display:none")
pnl.Attributes.Add("style", "display:block")


No comments:

Post a Comment