This post discusses about tips and tricks in Visual Studio 2010 which helps developers to write the code faster and make their life easier in day to day work much better. Especially you need these tips when you are concurrently working on two many projects. Let us group these tips and tricks 1. IntelliSense Filtering IntelliSense options are filtered in Visual Studio 2010 let us take an example...
Version History in a SharePoint library
This post explains how to view version history in a SharePoint library. It also shows how to open a previous version and how to compare the current version with previous version. We will examine this with microsoft word document. If version history enabled in your SharePoint library then you can view in two different formats Major version and Minor version.
Key terms and Concepts in SharePoint 2010 Managed Metadata
What is Managed Metadata? This post explains key terms and concepts in Share Point 2010 Managed Metadata. Understanding these terms are very important before you read the Managed Metadata Features. Taxonomy A taxonomy is a hierarchical of words which are organised into groups based on similarities. It can be defined by one or more individuals. Advantage with Taxonomy is, it provides a...
Microsoft Visual Studio 2010 IDE next version features
This post discuss about new IDE features that microsoft planned for next version of Visual Studio. These features improves the developer experience by simplifying the environment and streamlining the common tasks. Let us take a specific example finding a word in file as shown in below
Configuring Session Support Using the Azure
In-memory session support is un-suitable in Azure Fabric environment. There is a possibility in windows azure where you can host a web role on multiple machines inside the fabric. AspProviders project which I explained in earlier post uses BLOB storage to store session itself. This post explains about configuring the ASP.NET application to use Azure session state provider. We can configure...
Using the Azure ASP.NET Providers with ASP.NET Applications
My previous post explained that changes that are necessary to run an existing ASP.NET application in the Windows Azure environment. This post explains about using Azure ASP.NET membership and role providers in ASP.NET web application. 1. Download the code asp.net providers for Azure from the MSDN Code Gallery. Add the downloaded project to your existing ASP.NET Solution and add a reference...
MOVING Web Applications to the CLOUD
This post discusses about preparing the Web application to run in CLOUD (Windows Azure) Environment. We will create a new windows azure project in VS 2010 to move the existing ASP.NET web application. Process described below works for both ASP.NET Web and MVC applications.
You need to download and install the following tools from here to move the applications to windows azure environment.
Creating Business Data Connectivity Model for SharePoint 2010 using VS 2010
This post discusses about how to connect .NET Connectivity Assembly for Business Connectivity services using Visual Studio 2010. Business Data Connection Model allows you to connect to the external data sources and can edit them directly from SharePoint site list.
Using Silverlight Web Part in SharePoint 2010
Using Silverlight Web Part, You can add Silverlight applications and videos to SharePoint page. Users just need Silverlight runtime to view or run the applications. You must be member of default security group in-order to add the web part to the page.
You need to complete the below steps before adding the Silverlight application to SharePoint site.
Creating Visual Web Parts using VS 2010 for SharePoint 2010
This post discusses about how to create a visual web part for SharePoint 2010 using Visual Studio 2010. Visual Web Parts can be developed on Visual Studio design surface which is as easy as drag and drop controls in asp.net application. The web part which we are going to create is standard asp.net tree-view control which shows Interview Events and candidates who attend those interviews. We...