Debugging a custom timer job is very easy.
1. Deploy your code.
2. Now go to debug and select "Attach to process".
3. Search for OWSTIMER.exe.
4. Select OWSTIMER.exe and click on Attach.
5. Now Wait for some time, the debugger will apply.
Note: If OWSTIMER.exe not found then what???
Go to run and search enter services.msc.
Search for SharePoint 2010 Timer and start that, then repeat the...
Sunday, 22 March 2015
Custom Timer Job In SharePoint 2010

Custom Timer Job In 2010-
I am going to illustrate how to create Custom Timer job in SharePoint 2010.
Task: Updating the Sql Server Database table after each minute from SharePoint List.
1. Create a SharePoint Project as a form Solution.
2. Take a class file "SpeedTimer.cs"
3. Copy and paste...
Sunday, 8 March 2015
Insert, Update and Delete in SharePoint 2010 using C#
We can do insert, update, delete operations in SharePoint List using C# web part.
This is very simple to insert, update and delete in custom list of SharePoint.
On button click event follow this code for Inserting data into SharePoint List.
Insert:
SPWeb spweb = SPContext.Current.Web; //open your site
...
Saturday, 7 March 2015
Microsoft launches Office 2016 preview for Mac with full Retina support, OneDrive and SharePoint integration

Microsoft today launched a preview of Office 2016 for Mac. The test version of the productivity suite is free, doesn’t require you to register or sign in, and can be installed alongside Office for Mac 2011 — you can download it now from Office.com’s Mac preview page.
Office for Mac is now “powered...
Sunday, 1 March 2015
FBA(Form Based Authentication) configuration in SharePoint 2010

Simple FBA Configuration
I am going to share my first 'Form Based Authentication'
experience with you. I am going to illustrate how you can configure FBA
with SharePoint 2010.
If you will follow each and every step as follows, you will get success...