|
By Udayakumar Ethirajulu , on May 16th, 2008 Hey Guys, I got a requirement from the business to change the Background color of the webpart title for Out of Box webparts. Then i started looking on CSS I found the following CSS class which overrides the style of WebPart Title.
.ms-WPHeader TD { border-bottom:0px solid #4e7cb7; border-collapse:collapse; }
Change this class as per […]
By Udayakumar Ethirajulu , on May 12th, 2008 The issue will araise the account doesnt have audit permission to log audit events.
To Resolve To grant a domain principal the Generate Security Audits privilege:
After you identify this account, click Start, point to Administrative Tools, click Local Security Policy, and then click Local Policies. Click User Rights Assignment. In the details pane, right-click […]
By Udayakumar Ethirajulu , on April 17th, 2008 To deploy the solution package like *.wsp or *.cab in SharePoint FARM. first we need to add the solution package file to the solution store, then it can be deployed at web application level or in FARM level(Global Deployment). Use the following stsadm command to add the solution to the deployment store. stsadm -0 addsolution […]
By Udayakumar Ethirajulu , on April 14th, 2008 Hi Devs, The following is the piece of code to send Email from webpart.
using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Collections.ObjectModel; using Microsoft.SharePoint.Utilities; using Microsoft.SharePoint; using System.Data; using System.Collections; namespace SendMail { public class SendMail : Microsoft.SharePoint.WebPartPages.WebPart { private TextBox txtTo; private Button btnSendMail; protected override […]
By Udayakumar Ethirajulu , on March 10th, 2008 I have consolidated few links from Microsoft for MOSS 2007 Product Costing.
Microsoft Office SharePoint Server 2007 and Related Technologies pricing
Microsoft Office SharePoint Server 2007 products comparison download
2007 Microsoft Office system pricing and upgrade information
By Udayakumar Ethirajulu , on March 9th, 2008 Do you want to hide your quick launch Bar in MOSS 2007 There are two ways to hide the quick launch bar 1. You can edit directly in CSS 2. Adding Hidden content editor webpart
Add new content editor webpart Click Source Editor in ToolPane paste the below code in content editor webpart [style] .ms-quicklaunch […]
By Udayakumar Ethirajulu , on February 22nd, 2008 Use the Following stadm command to force the timer jobs jobs to execute. no need to wait for the interval to execute the timerjobs. stsadm.exe -o execadmsvcjobs
By Udayakumar Ethirajulu , on January 31st, 2008 I want to share how to rename the web application name in command line administration of MOSS 2007 using STSADM Command.
Syntax: stsadm -o renameweb -url -newname
Example: Stsadm -o renameweb -url http://localhost/oldname -newname newname
The above command will rename the web application from oldname to the newname.
By Udayakumar Ethirajulu , on January 31st, 2008 MOSS has many inbuilt features. The scope of this POC is to integrate Commerce Server 2007 with MOSS 2007 to provide Portal Integrated e-Commerce Application
Configuring MOSS 2007 to Use the Commerce Server Membership Provider As The Basis For User Authentication
The primary tasks are to make the Central Administration and Portal sites hand-shake […]
By Udayakumar Ethirajulu , on January 6th, 2008 In MOSS 2007 Approval workflow is available in out of the box itself. Just we need to configure only few steps then we are ready with the approval process.
If the approval workflow is configured the document will be visible only to the contributor and to the approver.
Steps to Configure Content approval workflow
Open […]
|
|