Thursday, January 29, 2015

How to get list of running worker process using command prompt

In SharePoint, if you want to debug your code then you need to attached W3WP worker process in Visual Studio to start debugging. Generally, we are attaching all the worker process. By doing this all the SharePoint services goes in the debugging mode and your process takes more execution time then it generally takes. To avoid this we have to attached only worker process (W3WP) which is associated with our application.To attach worker process...

Monday, October 20, 2014

How to add custom control (delegate control) in SharePoint 2013 Masterpage(.html version)

Hi Floks,Today I am going to talk regarding delegate control which is mostly used to insert SharePoint control in simple html pages. SharePoint contains many delegate control in it's default master-page. Some of them are as listed below: AdditionalPageHead GlobalSiteLink0 GlobalSiteLink1 GlobalSiteLink2 PublishingConsole QuickLaunchDataSource SmallSearchInputBox TopNavigationDataSourceYou can customize this control as well as you can create you own...

Wednesday, October 15, 2014

Clear SharePoint Designer Cache

Hi Floks,Today I am going to explain how to clear cache of SharePoint Designer. By clearing SharePoint Designer Cache following things of SharePoint Designer will be wiped out. Site history which you open in SharePoint Designer in the past Credentials which you stored in SharePoint site Site folders which will be created while opening site in SharePoint DesignerSteps to clear SharePoint Designer Cache Open Run Open below listed path & Remove...

Wednesday, October 1, 2014

SharePoint URL shortcuts / URL of Pages which can be used for SharePoint Administrator

Below is the list of pages & their paths which can be accessed from URL :Below listed URL's works for SharePoint 2010 for SharePoint 2013 please add /15/after /_layouts. Add web parts to any page: /append ?PageView=Shared&ToolPaneView=2 Create New Site Content: /_layouts/create.aspx Create New Site: /_layouts/NewsbWeb.aspx List Template Gallery: /_catalogs/lt/Forms/AllItems.aspx Master Page Gallery: /_catalogs/masterpage/Forms/AllItems.aspx Manage your Alerts: /_layouts/SubEdit.aspx Create New Alert: /_layouts/SubChoos.aspx Manage...

Monday, August 25, 2014

Save SharePoint Publishing site as Template

Hello Floks,In one of our project, we need to save template of Publishing site. Microsoft restrict saving SP2013 Publishing sites as Template(more info).Earlier version of SharePoint (Below than 2013) supports SharePoint does not support Save Site as Template option with the Publishing features turned on. The supported method to create templates for publishing sites is to use a site definition template and using a feature XML. If you want to save...

Tuesday, August 5, 2014

How to get value of Start Time & End Time in Caledar New & Edit Page using JavaScript

Hello Friends. Today my friend facing an issue in fetching event Start Time from the Calendar New Page. She ask me to help her for fetching Event Start Time. As all developers do I analyze the code generated from SharePoint and verify the HTML and find the solution as describe below:She needs value from drop down of the Event Start Time in JS when user click on Save button. So she is worrying about how to fetch single dropdown value of the...

Monday, July 28, 2014

WCF – The maximum string content length quota (8192) has been exceeded while reading XML data

The DataContractSerializer in WCF serializes objects to XML Streams. There is a size (length) limitation on these streams. They are restricted by default to 8k (8192 bytes).While this helps in avoiding Denial of Service (Dos) attacks, it is an inconvenience for several service operations that DO return LARGER than 8k size objects. The result set from a single query returned by a WCF service could constitute one such large object. When this happens, the WCF run-time throws an exception:The maximum string content length quota (8192) has been exceeded...

Wednesday, April 2, 2014

How to update DB Column

Using below query all table's having Createdby and Updatedby column should be altered. You don't need to fire query for each table.SELECT'ALTER TABLE ' + TABLE_NAME+ ' ALTER COLUMN Createdby varchar(50) go ' AS Createdby, 'ALTER TABLE ' + TABLE_NAME+ ' ALTER COLUMN Updatedby varchar(50) go ' AS Updatedby  + ';'FROM INFORMATION_SCHEMA.TAB...

Monday, February 10, 2014

Request Management in SharePoint Server 2013, Part Two: Example Scenario and Configuration Step by Step

IntroductionIn the first part of this article series I covered the feature capability and provided an architecture overview of Request Management, a new capability introduced with SharePoint Server 2013. Request Management allows SharePoint to understand more about, and control the handling of incoming requests. This second part details an example scenario and provides a step by step of the necessary configuration.Before we get started,...