Sign in
Kirk Evans Blog
.NET From a Markup Perspective
About Kirk
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.NET Programming
AJAX
Architecture
ASP.NET
Atlanta Microsoft Events
Cloud Services
Interoperability
Life at Microsoft
LINQ
Microsoft Office
Personal
PowerShell
Security
SharePoint
Silverlight
Telecommunications
UGA Football
Visual Studio 2008
Visual Studio 2010
VSTS
WCF
Web 2.0
Windows Workflow Foundation
XML
XML Web Services
Archive
Archives
May 2013
(2)
April 2013
(5)
February 2013
(1)
January 2013
(2)
November 2012
(1)
August 2012
(2)
June 2012
(2)
April 2012
(1)
March 2012
(1)
February 2012
(4)
January 2012
(2)
December 2011
(2)
November 2011
(4)
October 2011
(1)
September 2011
(1)
July 2011
(5)
April 2011
(10)
March 2011
(1)
February 2011
(1)
December 2010
(1)
November 2010
(1)
October 2010
(2)
September 2010
(2)
August 2010
(4)
July 2010
(8)
June 2010
(4)
May 2010
(1)
April 2010
(6)
March 2010
(9)
February 2010
(5)
January 2010
(1)
November 2009
(1)
October 2009
(4)
August 2009
(1)
July 2009
(9)
June 2009
(8)
May 2009
(5)
April 2009
(11)
March 2009
(20)
February 2009
(13)
January 2009
(7)
December 2008
(6)
November 2008
(4)
October 2008
(5)
September 2008
(2)
August 2008
(11)
July 2008
(10)
June 2008
(17)
May 2008
(7)
April 2008
(11)
March 2008
(15)
February 2008
(3)
January 2008
(8)
December 2007
(5)
November 2007
(4)
October 2007
(9)
September 2007
(19)
August 2007
(8)
July 2007
(5)
June 2007
(11)
May 2007
(10)
April 2007
(8)
March 2007
(6)
February 2007
(5)
January 2007
(1)
December 2006
(1)
November 2006
(3)
October 2006
(12)
September 2006
(3)
August 2006
(2)
June 2006
(14)
May 2006
(20)
April 2006
(11)
March 2006
(12)
February 2006
(16)
January 2006
(14)
December 2005
(4)
November 2005
(20)
October 2005
(5)
September 2005
(23)
August 2005
(4)
July 2005
(13)
June 2005
(9)
May 2005
(6)
April 2005
(13)
March 2005
(10)
February 2005
(16)
January 2005
(4)
December 2004
(13)
November 2004
(6)
October 2004
(12)
September 2004
(9)
August 2004
(11)
July 2004
(9)
June 2004
(10)
May 2004
(11)
April 2004
(16)
March 2004
(6)
February 2004
(3)
January 2004
(1)
December 2003
(4)
November 2003
(11)
October 2003
(18)
September 2003
(2)
August 2003
(3)
July 2003
(10)
June 2003
(11)
May 2003
(6)
April 2003
(32)
March 2003
(17)
February 2003
(16)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Kirk Evans Blog
Programmatically Creating a SharePoint Content Type
Posted
over 2 years ago
by
Kirk Evans[MSFT]
0
Comments
I have been working on a project that requires creating a content type programmatically. Admittedly, it took me awhile to figure it out. You can create a content type for SharePoint declaratively in a feature using XML similar to the following...
Kirk Evans Blog
User Controls and Server Controls in SharePoint
Posted
over 2 years ago
by
Kirk Evans[MSFT]
0
Comments
ASP.NET developers have enjoyed using user controls and server controls in their development since ASP.NET was created. This post talks about user controls and server controls and shows how to implement them in SharePoint. User Controls A user control...
Kirk Evans Blog
Debugging JavaScript with the IE Developer Tools
Posted
over 2 years ago
by
Kirk Evans[MSFT]
1
Comments
An interesting question was posted on one of the distribution lists today. “The client wanted to look into this MSDN drag and drop typed left navigation bar to work on Sharepoint 2010, does anyone make this work or have idea about this?” Click the control...
Kirk Evans Blog
TinyGet for SharePoint
Posted
over 2 years ago
by
Kirk Evans[MSFT]
0
Comments
The IIS 6 Resource Kit Tools includes a tool called TinyGet to quickly issue an HTTP request to a page from a command line, and it works with IIS6 and higher (yes, you can install the resource kit tools on an IIS7 machine without problems). Why would...
Kirk Evans Blog
WinDBG and PssCor2 for SharePoint Developers
Posted
over 2 years ago
by
Kirk Evans[MSFT]
1
Comments
In this post, we’ll see some steps about how to troubleshoot a production SharePoint site using WinDBG and PssCor2.dll. For an introduction to setting up your environment and getting started, see my blog post “ Intro to WinDBG for .NET Developers...
Kirk Evans Blog
Intro to WinDBG for .NET Developers
Posted
over 2 years ago
by
Kirk Evans[MSFT]
8
Comments
When your code goes into production, you usually no longer have access to its binaries when they reach their final destination. Whether that is someone’s desktop or a set of servers, you no longer have access to directly observe your code and its...
Kirk Evans Blog
Adding jQuery to Every Page in SharePoint with Delegate Controls
Posted
over 2 years ago
by
Kirk Evans[MSFT]
2
Comments
A customer asked how they could add jQuery to every page in SharePoint. They wanted to modify core.js on the disk, but of course we all know that Microsoft does not support modifying files that reside in the _layouts folder . Of course there are supported...
Kirk Evans Blog
SharePoint Developers–What’s On Your Machine?
Posted
over 2 years ago
by
Kirk Evans[MSFT]
6
Comments
I recently got a question from a customer about utilities to include on their development machines. My view is that you should trust your developers and let them install the tools they need. However, some devs don’t have managers who trust...
Kirk Evans Blog
Code-Behind Page Layouts with Visual Studio 2010
Posted
over 2 years ago
by
Kirk Evans[MSFT]
0
Comments
This post shows how to create content types and page layouts with Visual Studio 2010. In Part 1 , I introduced the concept of content types and page layouts using SharePoint Designer. In this post, I will show how to accomplish the same tasks with Visual...
Kirk Evans Blog
Page Layouts in SharePoint
Posted
over 2 years ago
by
Kirk Evans[MSFT]
0
Comments
I have been working on a customer solution and have gotten to do some fun coding this week. As usual, I wanted to share it with you so that you can maybe learn a few new ways of working with SharePoint. The business problem is that the business...
Page 1 of 1 (10 items)