Sign in
Karthick's Blog
That's the secret to life...,replace one worry with another. -This posting is provided "AS IS" with no warranties, and confers no rights-
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.net
Content Management Server (MCMS)
SharePoint
Archive
Archives
January 2007
(3)
December 2006
(18)
November 2006
(6)
May 2006
(1)
April 2006
(15)
March 2006
(14)
February 2006
(3)
November 2005
(2)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Karthick's Blog
WSS 3.0: How to add settings sub menu for your custom web part – Verbs Explained...
Posted
over 7 years ago
by
MSDNArchive
1
Comments
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...
Karthick's Blog
Starting Point: Development with WSS 3.0
Posted
over 7 years ago
by
MSDNArchive
0
Comments
· 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...
Karthick's Blog
WSS 3.0: Getting "No SharePoint Site exists at the specified URL" - Visual Studio 2005 Extensions for SharePoint
Posted
over 7 years ago
by
MSDNArchive
9
Comments
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...
Karthick's Blog
WSS 3.0 : How to add a new ContentType?
Posted
over 7 years ago
by
MSDNArchive
3
Comments
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...
Karthick's Blog
WSS 3.0 : Adding links to the quick launch bar
Posted
over 7 years ago
by
MSDNArchive
3
Comments
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...
Karthick's Blog
WSS 3.0 - How to create new SharePoint Feature?
Posted
over 7 years ago
by
MSDNArchive
8
Comments
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...
Page 1 of 1 (6 items)