Let's hide Upload Controls section from Sitefinity 3.6 toolbox

Let's hide Upload Controls section from Sitefinity 3.6 toolbox

Posted on March 30, 2009 0 Comments

The content you're reading is getting on in years
This post is on the older side and its content may be out of date.
Be sure to visit our blogs homepage for our latest news, updates and information.

 

I few days ago I created a post about how we can hide controls from Sitefinity toolbox section. Now I am going to show you how to hide upload controls section of the toolbox - check out figure 1.

The idea here is that even you deny the access to some controls someone could upload its own control. Generally the code is the same as for hiding controls the difference is that we are hiding HtmlAnchor control.

We need to find controlsContainer and then create a new instance of HtmlAnchor.This control does not have an ID, so that we are forced to use .Href to be sure that we are managing the right control.

 

 if (toolbox != null)  
        {  
            // find the container  
            Control control = toolbox.FindControl("controlsContainer");  
  
            foreach (Control cntr in control.Controls)  
            {  
                HtmlAnchor anchor = cntr as HtmlAnchor;  
                if (anchor != null && anchor.HRef != null && anchor.HRef.IndexOf("toolbox.UploadControl()") >= 0)  
                {  
                    anchor.Visible = false;  
                }  

 

hide upload controls in Sitefinity

 

                                  figure 1.
progress-logo

The Progress Team

View all posts from The Progress Team on the Progress blog. Connect with us about all things application development and deployment, data integration and digital business.

Comments

Comments are disabled in preview mode.
Topics

Sitefinity Training and Certification Now Available.

Let our experts teach you how to use Sitefinity's best-in-class features to deliver compelling digital experiences.

Learn More
Latest Stories
in Your Inbox

Subscribe to get all the news, info and tutorials you need to build better business apps and sites

Loading animation