sridhar --
Your getting that error because false is literal and should not have the parentheses.
Label5.Visible = false();
Should look like this:
Label5.Visible = false;
Jack
public partial class welcome : System.Web.UI.Page
public
{
}
protected void LinkButton1_Click(object sender, EventArgs e)
Button4.Enabled = false();
when i am trying like this, it show error like Method name expected.What is mistake i have done here.Please let me know.