Sundar Narasiman's Random Musings on .NET and SharePoint
Sign in
|
Help
Home
Contact
RSS for Posts
Atom
Email Notifications
Go
Search
Go
Archives
November 2009 (3)
October 2009 (7)
September 2009 (7)
August 2009 (3)
March 2009 (1)
February 2009 (1)
January 2009 (2)
December 2008 (2)
November 2008 (5)
October 2008 (1)
August 2008 (4)
July 2008 (2)
June 2008 (3)
May 2008 (3)
March 2008 (2)
February 2008 (10)
January 2008 (1)
C# Bloggers
Luke Hoban
SharePoint Bloggers
Mark Arend
Andrew Connell
Ben Curry
Brian Wilson
Bill English
Arpan Shah
Daniel Webster
Daniel Mcpherson/
Eric Legault
Graham Tyler
Heather Solomon
Jan Tielens
Joe Schurman
Joel Oleson
JohnWe
Kathy Hughes
Keith Richie
Keith Richie
Mike Walsh
Mitch Princh
Shane Perran
Patrick Tisseghem
Todd Bleeker
Tom Rizzo
CLR Bloggers
Tess
Maoni
Blog Archive List
November 2009 (3)
October 2009 (7)
September 2009 (7)
August 2009 (3)
March 2009 (1)
February 2009 (1)
January 2009 (2)
December 2008 (2)
November 2008 (5)
October 2008 (1)
August 2008 (4)
July 2008 (2)
June 2008 (3)
May 2008 (3)
March 2008 (2)
February 2008 (10)
January 2008 (1)
October 2009 - Posts
0
Comments
Learning resources for visual Studio 2010 and .NET 4.0 beta2
by
lavssun
I came across the following useful learning resources of visual studio 2010 and .NET 4.0 beta2. Visual studio 2010 and .NET 4.0 Training Course http://channel9.msdn.com/learn/courses/VS2010/ Visual studio 2010 and .NET 4.0 beta2 walkthroughs http://msdn...
Filed under:
Visual Studio
0
Comments
Visual studio 2010 and .NET 4.0 beta 2 released
by
lavssun
The beta2 of visual studio 2010 and .NET 4.0 is released. It can be downloaded in msdn. The url is below :- http://msdn.microsoft.com/en-us/vstudio/dd582936.aspx
Filed under:
Visual Studio
1
Comments
Script to retract sharepoint solution package (wsp) and deactivate features
by
lavssun
The following snippet contains the script to retract sharepoint solution packages and de-activate features. This would be become handy to the sharepoint adminstrators, when they want to retract multiple solution packages (wsp) and de-activate multiple...
Filed under:
SharePoint Administration
0
Comments
Create unsecure application pages for sharepoint
by
lavssun
There are times, where we need to create an application page to be accessed anonymously by the user, instead of the user signing-in and accessing the page. Here is the code-snippet to create an unsecure application page for sharepoint. public partial...
Filed under:
SharePoint Development
0
Comments
Create secure application page for sharepoint
by
lavssun
Creating an application page for sharepoint is fairly simple and straight-forward. To make that application page secure, just do some extra steps in the code. Here is the code-snippet for creating secure application page in sharepoint . public partial...
Filed under:
SharePoint Development
0
Comments
Script to install sharepoint solution package (wsp) and activate features
by
lavssun
The following is the script that can automate manual installation of wsps and activation of features. :begin @echo off rem ** mention the name of the wsp to be installed ** set solutionName=SampleSolution rem ** declare list of features to be installed...
Filed under:
SharePoint Administration
0
Comments
Leverage Javascript inside sharepoint web parts
by
lavssun
Many a times, we'd find the need for leveraging the javascript in sharepoint web parts. It could be a simple requirement of opening up a pop-up window or could be a complex requirement to invoke a web service from javascript. Here is code-snippet...
Filed under:
SharePoint Development