Sundar Narasiman's Random Musings on .NET and SharePoint
Sign in
|
Help
Home
Contact
RSS for Posts
Atom
Email Notifications
Go
Search
Go
Archives
November 2009 (3)
October 2009 (7)
September 2009 (7)
August 2009 (3)
March 2009 (1)
February 2009 (1)
January 2009 (2)
December 2008 (2)
November 2008 (5)
October 2008 (1)
August 2008 (4)
July 2008 (2)
June 2008 (3)
May 2008 (3)
March 2008 (2)
February 2008 (10)
January 2008 (1)
C# Bloggers
Luke Hoban
SharePoint Bloggers
Mark Arend
Andrew Connell
Ben Curry
Brian Wilson
Bill English
Arpan Shah
Daniel Webster
Daniel Mcpherson/
Eric Legault
Graham Tyler
Heather Solomon
Jan Tielens
Joe Schurman
Joel Oleson
JohnWe
Kathy Hughes
Keith Richie
Keith Richie
Mike Walsh
Mitch Princh
Shane Perran
Patrick Tisseghem
Todd Bleeker
Tom Rizzo
CLR Bloggers
Tess
Maoni
Blog Archive List
November 2009 (3)
October 2009 (7)
September 2009 (7)
August 2009 (3)
March 2009 (1)
February 2009 (1)
January 2009 (2)
December 2008 (2)
November 2008 (5)
October 2008 (1)
August 2008 (4)
July 2008 (2)
June 2008 (3)
May 2008 (3)
March 2008 (2)
February 2008 (10)
January 2008 (1)
0
Comments
Create secure sharepoint application page for site administrator
by
lavssun
I've seen a question in msdn forum few days back, asking whether the sharepoint application page can be accessed only by the administrator. There is a simple way to achieve this. Whenever we create the secure application page in sharepoint, we need...
Filed under:
SharePoint Development
0
Comments
Create a custom web part to render silverlight application
by
lavssun
In my previous post, I've discussed about how to leverage the content editor web part to render the silverlight application. In this post, I'd be discussing the steps to create a custom web part to render the silverlight application. The custom...
Filed under:
SharePoint Development
0
Comments
Leverage content editor web part to render silverlight application
by
lavssun
Silvelight can be integrated with SharePoint sites to provide richness and improve the user experience of the SharePoint sites. There are many ways to integrate the silverlight application (xap) with SharePoint sites. The first option is to leverage the...
Filed under:
SharePoint Development
0
Comments
Learning resources for visual Studio 2010 and .NET 4.0 beta2
by
lavssun
I came across the following useful learning resources of visual studio 2010 and .NET 4.0 beta2. Visual studio 2010 and .NET 4.0 Training Course http://channel9.msdn.com/learn/courses/VS2010/ Visual studio 2010 and .NET 4.0 beta2 walkthroughs http://msdn...
Filed under:
Visual Studio
0
Comments
Visual studio 2010 and .NET 4.0 beta 2 released
by
lavssun
The beta2 of visual studio 2010 and .NET 4.0 is released. It can be downloaded in msdn. The url is below :- http://msdn.microsoft.com/en-us/vstudio/dd582936.aspx
Filed under:
Visual Studio
1
Comments
Script to retract sharepoint solution package (wsp) and deactivate features
by
lavssun
The following snippet contains the script to retract sharepoint solution packages and de-activate features. This would be become handy to the sharepoint adminstrators, when they want to retract multiple solution packages (wsp) and de-activate multiple...
Filed under:
SharePoint Administration
0
Comments
Create unsecure application pages for sharepoint
by
lavssun
There are times, where we need to create an application page to be accessed anonymously by the user, instead of the user signing-in and accessing the page. Here is the code-snippet to create an unsecure application page for sharepoint. public partial...
Filed under:
SharePoint Development
0
Comments
Create secure application page for sharepoint
by
lavssun
Creating an application page for sharepoint is fairly simple and straight-forward. To make that application page secure, just do some extra steps in the code. Here is the code-snippet for creating secure application page in sharepoint . public partial...
Filed under:
SharePoint Development
0
Comments
Script to install sharepoint solution package (wsp) and activate features
by
lavssun
The following is the script that can automate manual installation of wsps and activation of features. :begin @echo off rem ** mention the name of the wsp to be installed ** set solutionName=SampleSolution rem ** declare list of features to be installed...
Filed under:
SharePoint Administration
0
Comments
Leverage Javascript inside sharepoint web parts
by
lavssun
Many a times, we'd find the need for leveraging the javascript in sharepoint web parts. It could be a simple requirement of opening up a pop-up window or could be a complex requirement to invoke a web service from javascript. Here is code-snippet...
Filed under:
SharePoint Development
0
Comments
Web Application Tool Kit released
by
lavssun
Microsoft launched a number of Web Application Toolkits. What is a web application ToolKit ? Web Application Toolkits provide the packaged set of running samples, templates and documentation that enables the web developers to extend their web application...
Filed under:
ASP.NET
0
Comments
List of SharePoint Resources from Technet Rollup ā September09
by
lavssun
Here is the list of technical resources, that I've found in September 09 Technet rollup and I'm aggregating them below. Microsoft Forefront Server Security Management Console Documentation Forefront Server Security Management Console allows...
Filed under:
SharePoint General
0
Comments
ARCast TV- David Hill's introduction to application architecture
by
lavssun
Here is video that has the introduction to application architecture by David Hill. ARCast.TV - David Hill gives us an introduction to the Application Architecture Guide
Filed under:
Architecture
0
Comments
Creating SharePoint Surveys in Publishing Portals ā A Thought
by
lavssun
In this post, I'm just going to deal with how to create and host surveys in the sharepoint publishing environment. Iām just putting together all the thoughts and experiencs on this area. MOSS 2007 provide the out-of-box capability of creating and...
Filed under:
SharePoint Development
0
Comments
SharePoint List Item Read Security and Write Security
by
lavssun
Many a times, i've seen in MSDN Forums where people asking for the much granular-level of list security like who can read the list items and who can write/update t sayihe list items. There are couple of properties called ReadSecurity and Write Security...
Filed under:
sharepoint security
0
Comments
Patterns and Practices for developing sharepoint applications
by
lavssun
The patterns and practices for developing sharepoint applications has been released. This is aimed at architects and developers to aid the sharepoint development. It has One reference implementation addresses basic issues such as creating lists and content...
Filed under:
SharePoint Development
0
Comments
Create Custom Tool Parts for SharePoint Web Parts
by
lavssun
What is a custom tool part ? The Custom tool part is part of the web part infrastructure, that helps us to create a custom user interface for the web part properties that goes beyond the capabilities of the default property pane. When do we need a custom...
0
Comments
Render Iframes dynamically inside SharePoint Application Pages
by
lavssun
There is a requirement to render the publically available web site content inside SharePoint application pages, dynamically based on arbitrary condition. This can be done in two ways. The first option is to use the page viewer web part and dynamically...
0
Comments
SharePoint Conference 2009 Sessions
by
lavssun
The initial list of sessions for SharePoint Conference 2009 to be held in October 2006 at LasVegas is announced. Here is the initial list of session and topics :- SharePoint 2010 Overview and What's New Upgrading to SharePoint 2010 SharePoint 2010...
Comments
Programmatically find the administrator of site collection
by
lavssun
I've seen a question on MSDN forum on how to programmatically find the administrator of a site-collection. Here is the answer for that. The following snippet helps us to programmaticaly find administrator of a site-collection. 1: SPSite oSPSite =...
Filed under:
Sharepoint Code Snippets
More Posts
Next page »