Sign In
Microsoft Premier Field Engineer - SharePoint
All posts are provided "AS IS" with no warranties, and confers no rights.
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search Blogs
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
Business Intelligence
Code Samples
Coding Tips
Custom Solutions
Customization
Document library
How To
List
MOSS 2007
Object Model
Performance and capacity planning
Performance Monitor
Permissions
Search
SharePoint 2010
SharePoint 2010 Developer
SharePoint Foundation 2010
SharePoint Server 2010
Snippets
SPS 2003
Web Services
Webparts
Workflow
WSS v2
WSS v3
Blog - Link List
SharePoint Blogs
SharePoint Team Blog
SharePoint Thoughts
Stefan Goßner's Blog
Andrew Connell's Blog
Arpan Shah's Blog
SharePoint Resources
SharePoint 2010 Developer
Developers at MSDN
SharePoint Developer Center
SharePoint MSDN Forums
SharePoint Server 2010 Resource Centers
.Net Resources
ASP.NET 4 and Visual Studio 2010
C# Future
.NET Framework
CodePlex - SharePoint
.Net Articles
Microsoft Ajax
Silverlight
Archive
Archives
December 2011
(1)
October 2011
(1)
September 2011
(1)
August 2011
(1)
July 2011
(1)
April 2011
(1)
March 2011
(1)
December 2010
(1)
September 2010
(1)
August 2010
(1)
July 2010
(1)
June 2010
(3)
May 2010
(1)
March 2010
(5)
December 2009
(2)
September 2009
(6)
June 2009
(12)
December 2008
(7)
November 2008
(1)
June 2008
(5)
April 2008
(2)
November 2007
(1)
October 2007
(2)
July 2007
(1)
September, 2009
MSDN Blogs
>
Microsoft Premier Field Engineer - SharePoint
>
September, 2009
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Microsoft Premier Field Engineer - SharePoint
Code snippet to add / modify columns in a list
Posted
over 3 years ago
by
-Tejas
0
Comments
It iterates through a whole site collection and wherever the list with name “test” it finds, It will do the changes. 1: using System; 2: using System.Collections.Generic; 3: using System.Text; 4: using Microsoft.SharePoint; 5: ...
Microsoft Premier Field Engineer - SharePoint
Code sample to aggregate the text from "append changes" column to Multiline text field.
Posted
over 3 years ago
by
-Tejas
0
Comments
This is a code sample to copy all of the text from the “col1” column to “col2” column. To note again, “col1” is an "append changes" column so the previous edits of the comments field are stored in previous versions of the list item. 1: using...
Microsoft Premier Field Engineer - SharePoint
Ways to pass security credentials to web service call
Posted
over 3 years ago
by
-Tejas
0
Comments
[1] 1: WS.Credentials = new System.Net.NetworkCredential(userName, password, domain); If you want to pass explicit credentials and filter the record after that. [2] http://support.microsoft.com/kb/813834 1...
Microsoft Premier Field Engineer - SharePoint
Code to subscribe the User for alert notifications from a list
Posted
over 3 years ago
by
-Tejas
0
Comments
1: SPWeb web = SPContext.Current.Web; 2: 3: SPList list = web.Lists[ "Pages" ]; 4: 5: SPUser user = web.CurrentUser; 6: 7: SPAlert alert = user.Alerts.Add(); 8: 9: alert.Title...
Microsoft Premier Field Engineer - SharePoint
How To: Access item metadata from workflow when associated in document library
Posted
over 3 years ago
by
-Tejas
0
Comments
Problem There is a workflow which accesses the item metadata on workflow activated. In case of document library, when you upload a document, if the workflow is set to start on ItemAdded, it will start just after upload is done and before you completely...
Microsoft Premier Field Engineer - SharePoint
In SPS 2003, Use custom template to create the document workspace through ECB menu link.
Posted
over 3 years ago
by
-Tejas
0
Comments
In SPS 2003, In the ECB menu of the documents we get an option “Create Document Workspace”. This link uses the OOB document workspace STS#2 to create the document workspace. There was a requirement to use our own custom template to create the document...
Page 1 of 1 (6 items)