Showing posts with label SharePoint som. Show all posts
Showing posts with label SharePoint som. Show all posts

Thursday, September 22, 2016

22 Sep

Using REST API For Selecting, Filtering, Sorting And Pagination in SharePoint List

 how to work with SharePoint list items, basically performing CRUD operations, using the combination of REST API  and jQuery Ajax. The REST URI ends with any OData query operators to specify selecting, sorting, or filtering Selecting and sorting items: $select : This ' /_api/web/lists/getbytitle('test')/items'...

Monday, June 20, 2016

20 Jun

Disposing SharePoint Objects

Disposing SharePoint Objects Yes. It's completely fine. If you can use like below code in using block: using(SPSite oSPsite = new SPSite("http://server")) {   using(SPWeb oSPWeb = oSPSite.OpenWeb())    {        str = oSPWeb.Title;        str = oSPWeb.Url;  ...

Wednesday, August 5, 2015

05 Aug

Import and Export subsite in SharePoint 2013 Using PowerShell Script

 Add-PSSnapin Microsoft.SharePoint.PowerShell  Export-SPWeb "http://raghu/sites/test/test1" –Path "C:\rm.cmp" -includeusersecurity  Import-SPWeb "http://raghu/sites/test/test1" -path "C:\rm.cmp" -IncludeUserSecuri...

Tuesday, August 4, 2015

04 Aug

get SPWebTemplates Templates in SharePoint 2013

Add-PSSnapin Microsoft.SharePoint.PowerShell -ea silentlycontinue | Out-Null Get-SPWebTemplate | ft ID, name, Title, Description -autosize -wrap ...

Monday, August 3, 2015

03 Aug

What is the full form of mdf, ldf and ndf in SQL Server?

SQL Server databases have three types of files:Primary data filesThe primary data file is the starting point of the database and points to the other files in the database. Every database has one primary data file. The recommended file name extension for primary data files is .mdf.Secondary data filesSecondary data files...