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)
February 2008 - Posts
1
Comments
Programmatically retrieving number of SharePoint site collections inside web application
by
lavssun
SPFarm myFarm = SPFarm .Local; SPServer myServer = myFarm.Servers[ "SERVER NAME" ]; SPServiceInstance ssi; SPWebService sws; foreach ( SPServiceInstance servinst in myServer.ServiceInstances) { if (servinst.TypeName == "Windows SharePoint...
Filed under:
SharePoint Snippets
0
Comments
Office SharePoint ScreenCasts
by
lavssun
The following are the excellent screencasts related to SharePoint Building ASP.NET Web Parts for Windows SharePoint Services 3.0 Create an ASP.NET Web Part project from scratch and get it up and running within a Windows SharePoint Services 3.0 site. Creating...
Filed under:
SharePoint ScreenCasts
0
Comments
Web Part Life Cycle Events
by
lavssun
There are various web part events in the life-cycle. The following would shed some light to these events and help us to choose these events correctly based on the needs OnPreRender - It is called logically called before Render event of the ASP.NET page...
Filed under:
SharePoint Development
0
Comments
Catastrophic backup restore through stsadm
by
lavssun
Scenario Is it possible to perform catastrophic backup and restore through stsadm command line utility? Solution Yes, this can be performed with the help of stsadm command line utility itself. The following would do a complete farm-level catastrophic...
Filed under:
SharePoint Administration
0
Comments
Remove SharePoint 2003 from Server
by
lavssun
Scenario There is a server running SharePointPortalServer 2003. It has many web applications running SharePoint sites. How to remove SharePoint from just one web application? Solution The unextend functionality of stsadm.exe can be used to remove SharePoint...
Filed under:
SharePoint Administration
0
Comments
Connected Page Viewer Web Part
by
lavssun
Scenario:- There is a Link web part and a Page viewer web part on the web part page. The requirement is that, whenever a user clicks on a particular link inside Link Web Part it should automatically render the corresponding page inside the page viewer...
Filed under:
SharePoint Development
0
Comments
Infopath Browser Forms Error The form has been closed
by
lavssun
Scenario XMLFormView web part is used to render the Infopath browser forms. The XmlFormView web part cannot add to the web part page. It throws error message "The form has been closed" Cause This problem can be due to several reasons. They are...
Filed under:
Inofpath
7
Comments
Configuring MOSS 2007 to search pdf documents - install and configure pdf ifilters
by
lavssun
There is a requirement to index and search PDF documents inside MOSS 2007. The first thing that comes to my mind is "IFilters". Then I need to choose between the V6 and V8.1 of the IFilters. The advantage of Acrobat Reader V8.1 reader is that...
Filed under:
SharePoint Search
0
Comments
Setup External Tools Option in Visual Studio
by
lavssun
Scenario I'm more into SharePoint development these days, especially the development of custom web parts. I felt like I need to remember quite a bit of command line tools for SharePoint development, especially sn.exe which is more commonly used in...
Filed under:
Visual Studio
0
Comments
SharePoint Master Page Customization - ASP.NET Image Vs Html Image Controls
by
lavssun
Scenario We tried to customize the the master page of a SharePoint site (Team Site). The intent was to add banner image and icon to the master page. We edited the master page using SharePoint Designer 2007. We dragged and dropped the image to the master...
Filed under:
SharePoint Customization