SharePoint | This page allows a limit of 200 controls, and that limit has been exceeded

While working with SharePoint Master page or Custom page design, we might face this error sometimes, “This page allows a limit of 200 controls, and that limit has been exceeded”. Cause for this error If you are using too many controls in single page (or master page), you will face this error because SharePoint web application allows 200 controls limit by default. This means, you … Continue reading SharePoint | This page allows a limit of 200 controls, and that limit has been exceeded

Run Workflow for All Items of List in SharePoint

In some case we need to run workflow all items in List which is very panic work  via SharePoint GUI. We have to select list and run workflow manually for each item which is not effective if situation of more rows. Here we have small piece of cake in PowerShell command to accomplish the task but note this will not start instantly but in maximum … Continue reading Run Workflow for All Items of List in SharePoint

Security Trimmed Control in SharePoint 2013

This post explain about Security Trimmed Control and how to use in SharePoint with out custom coding. We can do security trimmed from SharePoint Designer for different users based of their permission. A user can be given a permission level like: Full Control Contribute Read Each Permission Level can map to different permissions like: Manage Web Add List Items View Pages Security Trimmed Control The … Continue reading Security Trimmed Control in SharePoint 2013

Security Trimmed Control in SharePoint 2013

This post explain about Security Trimmed Control and how to use in SharePoint with out custom coding. We can do security trimmed from SharePoint Designer for different users based of their permission. A user can be given a permission level like: Full Control Contribute Read Each Permission Level can map to different permissions like: Manage Web Add List Items View Pages Security Trimmed Control The … Continue reading Security Trimmed Control in SharePoint 2013

Redirect the page to another site/site collection in SharePoint

There can be some cases we may need to redirect some page or even home to another site or site collection (sub site may be). I observed that some developers trying from AAM or IIS but here I show easiest ways. There can be multiple ways to active this task. Easiest way using Js. window.location = “http://new-site/”; Take a copy of page (you want redirect) … Continue reading Redirect the page to another site/site collection in SharePoint