Introduction
Every control having a visibility property means you can hide or visible a control at any time any where. Bydefault every control set true in visibility. lets take a simple example take a web form and place control onit. Also set visibility property.Example
ControlId.Visibility = True/false;
<%@ Page
Language="C#"
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD
XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void
Button1_Click(object sender, EventArgs e)
{
CheckBox1.Visible = false;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Visibility Property of the control</title>
</head>
<body>
<form id="form1" runat="server">
<asp:CheckBox ID="CheckBox1"
runat="server"
Text="CheckBox
Visible" />
<br />
<br />
<asp:Button ID="Button1"
runat="server"
onclick="Button1_Click"
Text="Hide"
Width="85px"
/>
<div>
</div>
</form>
</body>
</html>