Archive for tag: Sharepoint

Microsoft Most Valuable Professional

8 January, 2010 (16:32) | Announcements | By: G Vijai Kumar

Happy to inform you that, on 1st January 2010 I have received a mail from Microsoft that I have been awarded as Microsoft Most Valuable Professional (MVP) in Sharepoint Server. What a surprise! I am so thrilled, thank you so much MICROSOFT for recognizing my contributions and honoring me with MVP award
The mail I received [...]

Sharepoint list form generator

14 October, 2009 (15:49) | MOSS - Object Model | By: G Vijai Kumar

Today I am going to show you how to generate a list form dynamically as soon as you select the list name you can see the form generated for you with file upload field (attachment). I also know that there isĀ  an excellent solution Sharepoint Form Generator developed by Alon Havivi, but still I want [...]

A quick look on WSS Out Of Box web services

14 October, 2009 (07:40) | Web Services | By: G Vijai Kumar

Here I am going to show you how to create/delete site collection and create/delete list using WSS OOB webservices
Creating site collection

static void Main(string[] args)
{

AdminService.Admin admService = new AdminService.Admin();
admService.Credentials = System.Net.CredentialCache.DefaultCredentials;
try
{
admService.CreateSite(“http://fivenumber:5/sites/someothername”, “SomeotherTitle”, “SomeotherDescription”, 1033, “STS#0″, “Fivenumber\\g.vijaikumar”, “GVijaiKumar”, “g.vijaikumar@fivenumber.com”, “”, “”);
Console.WriteLine(“Site Collection Created:”);
}
catch (System.Web.Services.Protocols.SoapException ex)
{
Console.WriteLine(ex);
}

Console.WriteLine(“Press any key to continue…..”);
Console.ReadLine();
}

Deleting site collection

static void Main(string[] args)
{

AdminService.Admin admService = new [...]

A quick look on Sharepoint object model programs

24 September, 2009 (13:11) | MOSS - Object Model, MOSS - Quick Look | By: G Vijai Kumar

Here I am going to show you that the actions which we perform normally with UI, those also can be done programmatically, the same thing I am going to show in this post, this post is mainly targeted for beginners those who are new to Sharepoint object model, a quick watch on programs to create [...]

Sharepoint hit counter web part

15 September, 2009 (11:26) | MOSS - Object Model | By: G Vijai Kumar

On 11th November, 2009 I have published the HitCounter webpart solution on to Codeplex
You can download the Hit Counter webpart from http://hitcounter.codeplex.com/
Comments on this solution are very much appreciated
Thanks for looking into this