Creating App Catalog in Modern SharePoint Online

App catalog is a separate site collection like team sites in SharePoint for configuring and managing SharePoint Store and its setting. This site collection is basically used for deploying custom apps which are developed for internal organization and makes those custom apps available in SharePoint sites to users to browse as well as add it. Users can search the deployed or installed apps from site … Continue reading Creating App Catalog in Modern SharePoint Online

Introducing a SharePoint App Bar in Modern SharePoint Online

Modern SharePoint is coming with lots of new and exciting features on regular basis. Microsoft is rolling out another new feature, called SharePoint App bar to enhance the global navigation experiences. In this article, I will give insights of SharePoint App bar and how it will enhance the user experiences. The SharePoint app bar brings a consistent navigation experience to every site on your intelligent … Continue reading Introducing a SharePoint App Bar in Modern SharePoint Online

Restore list from Existing in Modern SharePoint Online

Recently, we have observed that save list as a template option is missing for Modern SharePoint Online site. Because of which many users are getting confuse on how to restore their existing list into another site which is mostly required and quite normal in terms of SharePoint. Save as s template was very handy option to copy list definition as well as to migrate it … Continue reading Restore list from Existing in Modern SharePoint Online

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

SharePoint Next Level with Power Platform

Meet our valuable speaker “Rijwan Ansari”, from Tech One Global. Rijwan will speak at our event Global Microsoft 365 Developer Bootcamp – Bangladesh about “SharePoint Next Level with Power Platform”. Catch us Live on October 3, 2020, at 03:00 PM Bangladesh Standard Time (GMT +6) and learn more about Microsoft 365 Development, Opportunities, and Market #Microsoft365, #GlobalM365Bootcamp Co-Speaker: Satyadevi Karki https://www.facebook.com/Microsoft365Dev/posts/330395861739987 Recording: Continue reading SharePoint Next Level with Power Platform

SharePoint: Session state can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive. Please also make sure that System.Web.SessionStateModule or a custom session state module is included.

While installing SharePoint, Session State is disabled by default. If you have used session in any farm solutions then you might face this error. Error: Session state can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive. Please also make sure that System.Web.SessionStateModule or a custom session state module is included. We can resolved the … Continue reading SharePoint: Session state can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive. Please also make sure that System.Web.SessionStateModule or a custom session state module is included.

Power Automate | Send a Customized Email When a new SharePoint List Item Added – Part 1

Introduction In this article, we will learn to create a Power automation or a flow using SharePoint List. This article will demonstrate simple steps to create a flow, when new item is added in SharePoint List. Here, we will use previously created List  and create a flow to send customized email to Manager and User for Leave Approval Request in this part. Besides this, I … Continue reading Power Automate | Send a Customized Email When a new SharePoint List Item Added – Part 1

Change the session timeouts in SharePoint sites

Some cases, our clients (SharePoint Client) may request to change the session time out of SharePoint sites. It is allowed to set timeout of the user session in SharePoint so that users are logged out after certain time of inactivity. Additionally, current page state will be expired based configure timeout. There are multiple ways, we can configure session timeout. From central Administrator: Go to SharePoint … Continue reading Change the session timeouts in SharePoint sites

How to Create a List in SharePoint

Introduction In this article, we will learn how to create SharePoint List in SharePoint site. Additionally, we will add necessary columns and set property of columns. List creation in SharePoint On-premises, online (classic and modern SharePoint) both are same as of now. So, steps describe in this article will be helpful to create list in all these environments. Furthermore, we will add necessary column for … Continue reading How to Create a List in SharePoint

SharePoint Error: Updates are currently disallowed on GET requests. To allow updates on a GET, set the ‘AllowUnsafeUpdates’ property on SPWeb.

This error occurs while clicking General setting of Web Application in SharePoint Central Administrator. SharePoint Central Administrator >> Manage Web Applications >> Select Web Application (From List) >> General Settings >> General Settings. Resolution: Using Powershell Scripts ( SharePoint Management Shell): Run this powershell script: $web = get-spwebapplication http://SharepointUrl$web.HttpThrottleSettings$web.Update() Kind Regards! Continue reading SharePoint Error: Updates are currently disallowed on GET requests. To allow updates on a GET, set the ‘AllowUnsafeUpdates’ property on SPWeb.