Tree View Document Library in MOSS 2007

Hi Moss Devs, Are you looking for Treeview webpart to display the document library in tree view. There is no out of the box webpart available to display the document library in Treeview.

I started googling it when started working on this task. I got few webparts which is using java script to load the […]

Customizing Site Navigation Bar & Quick Launch in MOSS 2007

I am giving some inputs on how to play with site navigation bar in MOSS site using out of the box approach. The following is my default quick launch menu in the site. I want to add my custom links to quick launch.

To do, Open Site Actions -> Site Settings.

[…]

How To Create SubSites with Different Templates in MOSS 2007

If you try to create subsite in SharePoint portal by default it will show only parent site template.

Here its showing only Publishing site with workflow which is the parent site’s site template.

If its required for us to create the subsite with different site template.

Follow the below steps :

Open Site Actions […]

How to Configure SMTP in MOSS 2007 Site

To Configure Microsoft Office SharePoint Server 2007 for Outgoing Emails do the following steps:

Open Central Administration

Open Operations Tab and Click Outgoing email settings under Topology and Services

Central Administration -> Toplogy and Services -> Outgoing email settings

Configure the Appropriate SMTP Server Settings and click OK.

Now you have […]

Error Opening MOSS 2007 Forms Authentication Site in SharePoint Designer

If you try to open the Forms Authentication enabled site in SharePoint Designer it will through the following error:

The folder ‘http://myserver.com/’ isn’t accessible. The folder may be located in an unavailable location, protected with a password, or the filename contains a / or .

Designer cannot open the site because the site using […]

Programmatically Add User to SharePoint Group

To assign the user to group in MOSS 2007

The following code will add the user to site and to specified group.

private void AddUser(string strSite,string webGroup) { SPSecurity.RunWithElevatedPrivileges(delegate() { using (SPSite site = new SPSite(strSite)) { using (SPWeb web = site.OpenWeb()) { Boolean allowUnsafeUpdate = web.AllowUnsafeUpdates; try { web.AllowUnsafeUpdates = true;

web.SiteUsers.Add(loginName, MailId, […]

MOSS 2007 & WSS 3.0 Service Pack 1

Today Microsoft Released the Service Pack 1 for Microsoft Office SharePoint Server 2007 & Windows SharePoint Services 3.0

Get It here for WSS 3.0 SP1 Get it here for MOSS 2007 SP1

Turn Off UnExpected Error Occurred in MOSS 2007 To Display Exception Detail

MOSS 2007 by default will display the custom error page for all errors occurred in page

In Development phase it will be difficult for the developers to understand the exact error. Change the following Modifications with the web.config of the web application. Then it will display the exception details in the error page.

Turn […]

SharePoint Monitoring Toolkit

Microsoft Released the SharePoint 2007 Monitoring Tookit Get it Here

Overview The SharePoint Monitoring Toolkit helps you manage Microsoft® SharePoint® environments of all sizes with two new management packs for System Center Operations Manager 2007:

Windows® SharePoint Services 3.0 Management Pack Microsoft Office SharePoint Server 2007 Management Pack

These packs monitor the health state of […]

Programmatically Read List & View Content in SharePoint

I got a task to work on developing the windows application which will fetch the List View data from sharepoint and process the data in win forms app.

Previously i used to fetch the data using Lists.asmx,views.asmx.

Now i came to know there is other way to fetch the data from List View.

Syntax: https://myserver.com/_vti_bin/owssvr.dll?Cmd=Display&List={list […]