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
Tags
Business Intelligence
Code Samples
Coding Tips
Custom Solutions
Customization
Document library
How To
List
MOSS 2007
Object Model
Performance and capacity planning
Search
server
SharePoint
SharePoint 2010
SharePoint 2010 Developer
SharePoint 2013
SharePoint Foundation 2010
SharePoint Server 2010
Snippets
SPS 2003
Web Services
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 2012
(1)
October 2012
(1)
September 2012
(1)
August 2012
(1)
March 2012
(1)
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)
March, 2010
MSDN Blogs
>
Microsoft Premier Field Engineer - SharePoint
>
March, 2010
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Microsoft Premier Field Engineer - SharePoint
Not to allow Contributor users to access webpart menu of the webparts
Posted
over 3 years ago
by
-Tejas
1
Comments
One of my customers had a requirement in which Contributor users should not be allowed to access webpart menu of the webparts on the home page. Contributor users will get the webpart menu like below for all the webparts which are present on the page....
Microsoft Premier Field Engineer - SharePoint
Webpart code to dynamically load a page viewer webpart to display a requested page
Posted
over 3 years ago
by
-Tejas
2
Comments
1: using System; 2: using System.Runtime.InteropServices; 3: using System.Web.UI; 4: using System.Web.UI.WebControls; 5: using System.Web.UI.WebControls.WebParts; 6: using System.Xml.Serialization; 7: 8: using...
Microsoft Premier Field Engineer - SharePoint
Code snippet to copy documents from one document library to another
Posted
over 3 years ago
by
-Tejas
1
Comments
1: using (SPSite site = new SPSite( "http://ms10:200/sites/200" )) 2: { 3: using (SPWeb web = site.OpenWeb()) 4: { 5: SPList lib1 = (SPDocumentLibrary)web.Lists[ "Documents" ]; 6: SPList lib2 = (SPDocumentLibrary...
Microsoft Premier Field Engineer - SharePoint
Code snippet to create a Tasks list and associate it with a Parallel Approval workflow in a Pages library
Posted
over 3 years ago
by
-Tejas
0
Comments
The requirement to write this code was, After export/import, workflow modification for approvers was failing. Approvers were not able to perform the Approval workflow operations and then we tested that if we create a new Tasks list and modify the existing...
Microsoft Premier Field Engineer - SharePoint
Event handler code to add incoming emails with subject “Discussion [ID]” as replies
Posted
over 3 years ago
by
-Tejas
0
Comments
Here the users will send emails with subject “DiscussionTitle [Discussion ID]” format. If there is a discussion thread present with specified “[Discussion ID]” then it will add the incoming email as a reply in that thread. If ID is not supplied and if...
Page 1 of 1 (5 items)