I am getting cannot implicitly convert type string to bool on this line at child
this.Master.PanelToToggle.Visible = "true";
For a spinner image on masterpage and button on child to show spinner inside updateprogress of panel control
On child I have
<%@ MasterType VirtualPath="~/MasterPage1.Master" %>
On master I have
public Panel PanelToToggle
{
get { return this.Panel1;}
set
{
this.Panel1 = value;
}
}
The code is working well on another project. Thanks in advance