Panel.visible
private void Button1_Click(object sender, System.EventArgs e)
{
Panel1.Visible = False;
panel2.Visible = True;
}
Getting an Erroe message :
The name false does not exist in the class namespace projectname.webform1.
In addition if I write this:
Boolean b1 ;
b1 = True;
I get the same Error.
Maybe I need to add Namespace for boolean or somthing....
I hope U can help...
|