Sunday, December 20, 2009

Difference between ASPX Controls Visible and ClientVisible

.Visible:

The Visible property indicates whether a server control is rendered as an UI on the page. If this property is set to False, the control isn't rendered, and you can't operate it on the client side.

.ClientVisible:

The ClientVisible property specifies the initial visibility state of a web control on the client side. If this property is set to false, the control is rendered on a web page, but it is initially hidden on the client side.

Happy Programming!!!

No comments:

Post a Comment