Welcome to MSDN Blogs Sign in | Join | Help

November 2006 - Posts

WSS 3.0: How to add settings sub menu for your custom web part – Verbs Explained...

Its pretty simple and straight forward. ;). The web part menu has been handled by the WebPartVerbCollection. Adding an item to the collection will solve our problem. In your custom web part code, add the following piece of code. public override WebPartVerbCollection
Posted by Karthikeyan | 1 Comments

Starting Point: Development with WSS 3.0

· Install Windows Sever 2003 SP1 with IIS 6.0 · Install SQL Server 2000 / 2005 · Install Visual Studio 2005 · Download and Install .net Framework 3.0 http://www.microsoft.com/downloads/details.aspx?FamilyId=10CC340B-F857-4A14-83F5-25634C3BF043&displaylang=en
Posted by Karthikeyan | 0 Comments

WSS 3.0: Getting "No SharePoint Site exists at the specified URL" - Visual Studio 2005 Extensions for SharePoint

Getting the following error when I deploy my webpart by using Visual Studio 2005 extensions for SharePoint Error Message : "No SharePoint Site exists at the specified URL" In default, VS 2005 extensions using the default port 80 to deploy the webpart.
Posted by Karthikeyan | 8 Comments

WSS 3.0 : How to add a new ContentType?

Here you go for the sample, SPWeb MyWeb = new SPSite ( "http://<Server>/sites/Team%20Site/default.aspx" ).OpenWeb(); SPContentType DocTypes = MyWeb.AvailableContentTypes[ "Document" ]; SPContentType MyType = new SPContentType (DocTypes, MyWeb.ContentTypes,
Posted by Karthikeyan | 3 Comments

WSS 3.0 : Adding links to the quick launch bar

Microsoft.SharePoint.Navigation API allow us to add new link to the quick launch bar of your site. The sample code in the SDK is as follows. SPSite siteCollection = SPControl.GetContextSite(Context); SPWeb site = siteCollection.AllWebs["TestSite"]; SPWeb
Posted by Karthikeyan | 3 Comments

WSS 3.0 - How to create new SharePoint Feature?

How to create New Feature in WSS 3.0? How to add new menu item under “Site Settings” menu in wss 3.0? 1. Create a new folder, called “MyListUserFeature”, in C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\FEATURES 2. Create
Posted by Karthikeyan | 6 Comments
 
Page view tracker