Basic’s of .NET : Very useful in developing better Applications

In order to build an effective and high performance application in .NET you need to understand some of the very basic concepts which are very useful. I have outlined some of them. Read and feel free to ask any questions regarding any thing on them through comments.
1. IL : – Intermediate Language is also known [...]

ASP.NET Concept : What are Cookies and Where are they used

A cookie is a small amount of data that is stored either in a text file on the client file system or in memory in the client browser session. It contains site specific information that the server send to the client along with the page output. Cookies can be temporary or persistent.
You can use cookies [...]

ASP.NET Article : Cross Page Posting – A new feature in 2.0

By default, button controls in ASP.NET pages post back to the same page that contains the button, where you can write an event handler for the post. In most cases this is the desired behavior, but occasionaly you will also want to be able to post to another page in your application. The Server.Transfer method [...]

.NET Framework : The most valuable asset of Microsoft after Windows

The Microsoft .NET Framework is a collection of software technologies that began emerging from Microsoft Corporation around the turn of the century. The first version of .NET was released early in 2002, and version 1.1 came out in 2003. Version 2.0 was released late in 2005, and Version 3.0 followed in late 2006.The latest 3.5 [...]

Difference Between Server.Transfer() and Response.Redirect() Methodin ASP.NET

Both Server.Transfer() and Response.Redirect() method are used for navigation within a website and outside it.
Following are the major differences between them:-

Response.Redirect sends message to the browser saying it to move to some different page, while server.transfer does not send any message to the browser but rather redirects the user directly from the server itself. So [...]

Transaction in .NET : Explained in Detail

Transaction in .NET means executing two or more SQL Query one by one. It is done when we want to change more than one table at time. It helps and is useful as if error occiurs at any point in the whole transaction none of the SQL Query is excuted. So if the transaction executes [...]

Object Oriented Programming Concepts Explained in Detail

Object Oriented Programming is a problem solving technique to develop software systems. It is a technique to think real world in terms of objects. Object maps the software model to real world concept. These objects have responsibilities and provide services to application or other objects.
What’s a Class ?
A class describes all the attributes of objects, [...]

What’s New in Visual Studio 2008 SP 1 ?? Unleashed

Given the amount of difference in Visual Studio 2008 and Visual Studio 2008 SP1, VS 2008 & .NET SP1 is more like a new product than its predecessor. Besides giving enhanced performance in WPF application plus added designer improvements overall added features makes this release efficient and flexible for development and deployment of applications. Here [...]