15/04/2015

How To Know The Site Template In SharePoint

Easiest way to know the site template for any SharePoint site is by view page source, on the page source find about "SiteTemplateId", and now you can show it.

var g_wsaLCID = 1025;
var g_wsaListTemplateId = 850;
var g_wsaSiteTemplateId = 'BLANKINTERNET#0';

Read more...

08/04/2015

Extract List View GUID

Open the SharePoint list, go to your target view and do the following:

1- Copy the URL and paste in notepad.
2- Replace %2D to -
3- Replace %7B to “{
4- Replace %7D to }

Read more...

06/04/2015

WCF With Sharepoint

When using WCF and need to connect with the sharepoint you must do the following:

1- in web.config: Modify aspNetCompatibilityEnabled from false to true.

2- in main service you could add the below:
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]

EX:
    [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
    public class TestService : ITestService
    {
    }

Read more...

29/03/2015

FACADE Pattern

Bellow the good link to learn FACADE pattern, just give yourself 15 minutes:


Read more...

19/03/2015

Sharepoint 2013 - All Thing You Need

Download SharePoint 2013

Download SharePoint Foundation 2013 Preview

Download Language Packs for SharePoint Foundation 2013

Language Packs for SharePoint Server 2013 Preview

SharePoint 15 Technical Preview Interoperability API Documentation

Downloadable eBook: Deployment guide for SharePoint 2013 Preview

SharePoint Designer 2013

Read more...

Best way to download from Youtube

You can download the videos from Youtube site by add on the URL prefix ss and Enter, for example:

The original URL: https://www.youtube.com/watch?v=IcObgdidsQA
The updated URL: http://ssyoutube.com/watch?v=IcObgdidsQA

:)

Read more...

07/12/2014

Scrum Methodology


Read more...

21/10/2014

MBIZ Grow Efficiently Day 1, Day 2 and Day 3 - Training in Riyadh


Read more...

14/06/2014

Empty Long Table In SQL

To empty large table in SQL, Usually it need looooong time to finished. but you can do this by using the below command:

set rowcount 1;
truncate table TABLE_NAME;



Read more...

14/01/2014

Extract WSP file from farm

$spFarm = Get-SPFarm
$spFile = $spFarm.Solutions.Item("test.wsp").SolutionFile
$spFile.SaveAs("c:\test.wsp")

Read more...