Jevgeni Borozna's blog
SharePoint, ASP .NET
-
Connecting to SharePoint Foundation 2010 Internal Database
Windows SharePoint Services 3.0 (SharePoint 2007) using Windows Internal Database as database engine, which is 32-bit, even if it is installed as component of Windows Server 2008 64-bit.
-
Creating SharePoint 2007 List with ListInstance if ListTemplate is defined in other feature
If you are creating both ListTemplate and ListInstance in the same feature, then there is no problems and its Element Manifest could be something like:
-
Building SharePoint 2007 project for SharePoint 2010 in Visual Studio 2010
When you open SharePoint 2007 project in Visual Studio 2010 and click on Build/Rebuild command you will get following error message:
-
Getting all types from core library that implements specific interface
Sometimes you don’t know which of all .NET framework types better fits you requirements, but you know that this class must implement some interface.
-
Extending Control class to search sub-control by type
I have already wrote in my previous post about searching sub controls by type.
-
Adding GUID generator to Visual Studio 2008 Tools menu
First issue you can facing is you haven’t “Tools –> Create GUID” utility in your menu.
-
Searching for sub-control by type
Sometimes you need to search for some sub controls and its ID doesn’t depends on you. For example, you don’t know how this control will be rendered in different conditions. Like SharePoint fields are rendered. You know that there must be one TextBox (… or other type) which you need to use to do some trick with it.
-
Iterating through all Web Applications in a SharePoint farm
Iterating through SPSiteCollection and SPWebCollection is a pretty simple, because getting these collections is a simple.
-
Installing MS Office SharePoint Server 2007 on Windows Server 2008 R2
Windows Server 2008 R2 is compatible only with Office SharePoint Server 2007 with Service Pack 2.
-
Appending string in C#: String += vs string.Format vs StringBuilder
Appending strings performance test