Common Microsoft SharePoint Server 2010 Installation Issues

HaiFollowing are some of the common SharePoint Server installation issues and solutions??Issue 1:??an exception of type System.IO.FileNotFoundException was thrown.??additional exception information: could not load file or assembly Microsoft.IdentityModel version=3.5.0.0This issue will raise because Windows Identify Pack wasn\’t installed. Install Windows Identify pack and run again.Be sure to install 6.0 for Vista and 6.1 for Windows …

Common Microsoft SharePoint Server 2010 Installation Issues Read More »

Encrypt or Decrypt Connection Strings in web.config

Deploy applications in hosting environment we have to take care of application security items or confidential values of application like secure DB connection string, configuration values etc??? To secure all these information, we need to encrypt the keys.??ASP.NET 2.0 has built in functionality to encrypt / decrypt few sections of web.config file those are??RSAProtectedConfigurationProvider: This …

Encrypt or Decrypt Connection Strings in web.config Read More »

Difference Between Int32.Parse(), Convert.ToInt32(), and Int32.TryParse()

Int32.parse(string) Int32.Parse (string s),%method converts the,%string,%representation of a number to its 32-bit signed integer equivalent. When %s,%is a,%null,%reference, it will throw,%ArgumentNullException. If,%s,%is other than,%integervalue, it will throw,%FormatException. When %s,%represents a number less than,%MinValue,%or greater thanMaxValue, it will throw,%OverflowException. For example: string s1 = \”1234\”; string s2 = \”1234.65\”; string s3 = null; string s4 = …

Difference Between Int32.Parse(), Convert.ToInt32(), and Int32.TryParse() Read More »

Introduction to Windows Presentation Foundation

The Windows Presentation Foundation is Microsofts next generation UI framework to create applications with rich user experience. It is part of the .NET framework 3.0 and higher. WPF combines application UIs, 2D graphics, 3D graphics, documents and multimedia into one single framework. Its vector based rendering engine uses the hardware acceleration of modern graphics cards. …

Introduction to Windows Presentation Foundation Read More »

Gang of Four (GoF) Design Patterns

The Gang of Four (GoF) patterns are generally considered the foundation for all other patterns. They are categorized in three groups: Creational, Structural, and Behavioral. Here you will find information on these important patterns. Creational Patterns Abstract Factory: Creates an instance of several families of classes Builder: Separates object construction from its representation Factory: Method …

Gang of Four (GoF) Design Patterns Read More »

Scroll to Top