Can we run asp.net application without WEB.CONFIG file?

YES: Because all the configuration settings will be available under MACHINE.CONFIG file, by default these settings will be applied to all asp.net applications. The MACHINE.CONFIG file will be automatically loaded when .net framework is installed. It is something like if we had not defined the web.config the application will take… Continue reading

What is MSIL, and why should my developers need an appreciation of it if at all?

MSIL (Microsoft Intermediate Language) is a powerful feature used by .NET to execute the user’s code. As DOTNET support multiple language usage for code development and cross-language usability, all the code of a solution is eventually converted in to MSIL (a syntax code which is understood by CLR) and then… Continue reading

C# Basic Operator Overloading

Operator Overloading So far in this tutorial we have created classes to represent real-world objects complete with their appropriate methods and properties. These objects have not required the implementation of arithmetic operators as this type of functionality was not appropriate. In this article, we will create a class that does… Continue reading

.NET Deployment Questions and Answers

What do you know about .NET assemblies? Assemblies are the smallest units of versioning and deployment in the .NET application. Assemblies are also the building blocks for programs such as Web services, Windows services, serviced components, and .NET remoting applications. What’s the difference between private and shared assembly? Private assembly… Continue reading