Enhanced Visual Studio : New for Visual C++ in Microsoft Visual Studio 11 Developer Preview – 2

In the last blog of this series I had talked about Improved C++ 11 Standards Support, Visual C++ Compiler and linker, Visual C++ Libraries, IDE. In this blog I would like to discuss about the code quality tools. So let us discuss one by one: Parallel Debugging In addition to the Parallel Tasks window and Parallel Stacks window available ...

(Part 4) Tools for Metro Style Application Development

In my last post I had talk about Creating projects, designing user interfaces, editing and formatting code, member list and statement completion. As I told in this post we discuss Code snippets, Outlining, Refactoring, Additional formatting options, Navigating and exploring code, Solution Explorer, Class view, Object browser etc. We talk it about one by one ...

Part 1- Getting started with Building Windows Metro style app using C#

A Windows Metro style app is an application tailored for the new Windows user experience introduced inWindows Developer Preview. Here I introduce the essential code and concepts you need to create a Metro style app using C# using Extensible Application Markup Language (XAML) to define the UI. When you create your Metro style app using  ...

How to integrate AJAX Control Toolkit controls in ASP.NET

To create your first AJAX-Enabled website you should have Visual Studio installed on your computer and AJAX Extension. After installing the AJAX Extension the updated toolbox looks like - Now we can create our first AJAX-Enabled website. Open Visual Web Developer 2005 Express Edition and create a new Web Site (File -> New -> Web Site). In ...

Web caching in ASP.NET 2.0

Web caching technology in ASP.NET  is helpful for popular website reducing its server workload and improving access times. To use Web caching technology First, import the namespace of System.Web.Caching using System.Web.Caching Declare the variables static bool itemRemoved = false; static CacheItemRemovedReason reason; CacheItemRemovedCallback onRemove = null; Define the method of AddItemToCache, it will use Cache.Add ...