Hi all,
How to make a control visibilty to true or false. currently i am setting a panel control visibility like this in code behind. i am comparing the values of Username and UserId. If both the values are same..i am setting panel visibility to false
if (UserName == UserID))
{
pnl_linkbuttons.Visible = false;
}
is there any alternative way to set the control visibility in C# from code behind.
Thanks in advance.