In the previous article, we have discussed about increasing the traffic or the number of users to the blog. In this article, we will discuss how to create a tab using the labels which you have created for the posts in your blog.
If you have the older version of the blog, then in the design mode you...
Dec 27, 2011
Dec 26, 2011
How to hide the download a copy option (Context Menu) in the Document Library

In the document library we have an
option of downloading the document as shown below.
If the user
wants to hides or remove this option for all the users. The following steps will
explain the same.
1. First locate the following path C:\Program
Files\Common Files\Microsoft Shared\web server
...
How to hide the left navigation bar in the SharePoint
In this article, we will see how to hide the left navigation in SharePoint siteThere are many ways for hiding the left navigation in the SharePoint. Here is the simplest way to hide it.
1. Master.FindControl("PlaceHolderLeftNavBar").Visible = false;
2. Place a content editor in the page you want to hide the left navigation pane in the site and add the following code in the...
How to increase the Traffic or the Users to a Blog
Hi All,
We will start discussing about the blogger tips also.
In this article, we are going to discuss how to increase the traffic to your blog. I have listed it below.
1. Design the UI properly – Branding
The Look and feel is very important for a blog. This is the first thing which attracts the users to visit your blog often. So, plan the design and use proper templates...
Dec 23, 2011
Programmatically Creating Site Backup in SharePoint
In the previous article, we have discussed about creating and restoring the SharePoint site using stsadm command.
In this article, we will see how to take the backup of the site using SharePoint Object Model.The below is the code that will create the backup of the site and log the information in a log file.
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using...
stsadm Command for Creating Backup and Restoring a Site in SharePoint
In this article, we will discuss how to take a backup and restore it using the stsadmn command in SharePoint (WSS 3.0, MOSS 2007).
In SharePoint 2010, we use Power Shell instead of this command.
Before going for that let’s discuss about stsadm
What is stsadm command?
It is a command line tool for administration of SharePoint sites.
Where it is located in the server?
Normally, it is present...
Dec 20, 2011
Deploying Silverlight Application in SharePoint 2010

In the previous article, we have discussed about creating a simple Silverlight Application in Microsoft Visual Studio 2010.
Now, in this article we will discuss how to deploy the solution in the SharePoint 2010.
The New webpart feature added in the SharePoint 2010 and SharePoint Foundation 2010 is...
Dec 19, 2011
Silverlight Basic Tutorials
What is Silverlight?
Various Definitions from the internet:
1. Microsoft Silverlight is a web application framework that integrates multimedia, computer graphics, animation and interactivity into a single runtime environment.
2. Silverlight is a new cross-browser, cross-platform implementation of the .NET Framework for building and delivering the next generation of media...
Dec 15, 2011
Creating Custom Properties in Word 2007

In the previous article, I have explained about creating custom properties in word 2003. In this article, we will see how to create custom properties in word 2007.
It is slightly different from word 2003 and involves the following steps.
1. Open the Microsoft Word 2007 and create a new word document.
2....
Creating Custom properties in Word 2003

In the articles Part I,Part II and Part III we have discussed about how to read the custom properties of word 2003 using DSO dll in C# .Net.
In this article we are going to see about creating a bookmark and set the custom properties for the Microsoft Word 2003.
Steps
1. Open...
Dec 14, 2011
MediaWebPart in SharePoint 2010

In this article, we will discuss how to use the out of box webpart named "Media WebPart" in SharePoint 2010.
Note : This webpart is prsent only in the SharePoint 2010 and SharePoint foundation.
Steps:
1. Go to the sharepoint where you want to add the media webpart.
2. Go to Edit Page ->...