Re: ShowToolBar Property Visibility

  •  10-10-2007, 4:29 AM

    Re: ShowToolBar Property Visibility

    My code is something like this which executes on page's postback event with some link button which toggles the toolbar. First time when the toolbar is visible it makes it invisible fine...but when i again make it visible....the property is set to TRUE but the toolbar is not visible !!!!

    i tried in mozilla and IE too so not definiately a browser issue.

            if (some condition)
            {
                Editor1.ShowToolBar = false;
            }
            else
            {
                Editor1.ShowToolBar = true;
            }


View Complete Thread