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'...
Showing posts with label SharePoint som. Show all posts
Showing posts with label SharePoint som. Show all posts
Thursday, September 22, 2016
Monday, June 20, 2016
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
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
Add-PSSnapin Microsoft.SharePoint.PowerShell -ea silentlycontinue | Out-Null
Get-SPWebTemplate | ft ID, name, Title, Description -autosize -wrap
...
Monday, August 3, 2015
03
Aug
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...
Labels:
Powershell,
sharepoint 2013,
SharePoint som,
SQL