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
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
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)
April, 2006
MSDN Blogs
>
Karthick's Blog
>
April, 2006
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Karthick's Blog
How to hide Created at and Last Modified at details in the DispForm.aspx and EditForm.aspx?
Posted
over 6 years ago
by
MSDNArchive
4
Comments
Workaround 1: ============ 1. Open the site in FrontPage 2. Open the Lists Folders 3. Open the List 4. Open the DispForm.aspx page 5. In the Design Mode, Right Click on the List select "Edit SharePointListForm" 6. Remove the fields Apply the same steps...
Karthick's Blog
SPWeb.File.Add() it throws "The server instance not found" error message
Posted
over 6 years ago
by
MSDNArchive
7
Comments
PROBLEM When we use the FQDN name in the SPWeb object, and calls the Add() method, we will get the following error message. The server instance not found Root Cause: In stsadm.exe or any executable, STS only uses the IIS metabase to figure...
Karthick's Blog
SPS 2003 : "Cannot complete this action" Error message in custom list definition
Posted
over 6 years ago
by
MSDNArchive
6
Comments
Problem: While you create custom list instances on ONET.XML by adding to the configuration section, getting an error "Cannot complete this action" in the template selection screen Resolution: For the Custom List Definition, the DefaultDescription...
Karthick's Blog
SPS 2003 : How to persist an object state in to a session variable from custom web part?
Posted
over 6 years ago
by
MSDNArchive
3
Comments
Problem: How to persist an object state in to a session variable from custom web part? When you use the System.Web.HttpContext.Current.Session property you will get the error message "object reference not to set an instance of the object". Work...
Karthick's Blog
CMS 2002 : Getting "Class not registered" in Every SCA Tab on configure
Posted
over 6 years ago
by
MSDNArchive
5
Comments
Problem : Getting "Class not registered" in Every SCA Tab on configure Resoultion : Re-register the following DLL with “regsvr32 /i <DLL_Name>”. Urlmon.dll
Karthick's Blog
Sharepoint : How to use Event List as resource organizer (Meeting Resource Organizer)
Posted
over 6 years ago
by
MSDNArchive
2
Comments
Out of box SharePoint 2003 doesnt support this functionality which is essential. I found a workaround and here I provide the details. Its little tricky, so if you miss any step, the functionality may not work. I have attached the sample files here. ...
Karthick's Blog
CMS 2002 SP1 A : Installation - Getting "SQL-DMO (from SQL SP2) or above (required by MCMS Server) not installed" error
Posted
over 6 years ago
by
MSDNArchive
1
Comments
Problem : When you install CMS-2002 SP1a and the SQL Server installed in a remote machine, you will get the prerequisites not installed for “SQL-DMO (from SQL SP2) or above (required by MCMS Server)”. Root Cause : The VS developer components for CMS...
Karthick's Blog
How to enable document library event handlers for the newly created document libraries at the list definition level
Posted
over 6 years ago
by
MSDNArchive
13
Comments
The List definition files can be configured in such a way that the event handler configured automatically for the newly created document libraries. Here I provide the details of how to do it. Open the Site definition folder. If you use default Site...
Karthick's Blog
SharePoint : User Management - SPS
Posted
over 6 years ago
by
MSDNArchive
0
Comments
Here you go for the sample code snippets for user management in SPS - //Add users to the portal area or portal site level TopologyManager tm = new TopologyManager(); PortalSite ps = tm.PortalSites[ new Uri("http://karthickmain:9092") ]; Microsoft...
Karthick's Blog
SharePoint : User Management - WSS
Posted
over 6 years ago
by
MSDNArchive
2
Comments
Its hard to search from the SDK to find APIs and methods for the user managment. I have compiled the set of sample code snippets for the User Management in WSS - //Add user to the site groups SPWeb mySite = new SPSite("http://karthickmain:9091...
Karthick's Blog
SharePoint : How to hide a field from the Edit Form?
Posted
over 6 years ago
by
MSDNArchive
1
Comments
I am not sure, how this can be achieved thro' UI. But here, Sharepoint Object model helps us. localhost.Lists listService = new localhost.Lists(); listService.Credentials= System.Net.CredentialCache.DefaultCredentials; XmlDocument xmlDoc = new...
Karthick's Blog
SharePoint : How to retrieve all the properties from a list by using the GetListItems() method.
Posted
over 6 years ago
by
MSDNArchive
2
Comments
The example given in the SDK doesnt retrieve all the properties of the list. For e.g., I want to retrieve the file size. This property not found the results returned by the SDK sample. The work around is as follows. localhost.Lists listService = new...
Karthick's Blog
SharePoint : How to delete a sub folder in a document library programmatically
Posted
over 6 years ago
by
MSDNArchive
2
Comments
Unfortunately the sample code to delete the subfolder from the document library is not available in the SharePoint SDK. The sample code is as follows. SPWeb web = new SPSite("site url").OpenWeb(); web.Folders[“Document library name”].SubFolders...
Karthick's Blog
SharePoint : How to add banner page at the Portal site.
Posted
over 6 years ago
by
MSDNArchive
0
Comments
This is everyone's requirement, but unfortunately we do not have any out of box SharePoint functionality. I want to have a banner page at the top and want have a html file content as include directive. Once I modify HTML file at one place then that should...
Karthick's Blog
SharePoint: Search Results are not being returned when we use special characters.
Posted
over 6 years ago
by
MSDNArchive
1
Comments
We could face a problem in searching the special characters by using the GET method. For example, I have a document which has the German characters in it. I have indexed the document already. In the URL type the following, and hit enter. http...
Page 1 of 1 (15 items)