Derived Class Access to Base Class Members in ASP.Net C# A derived class has access to the public, protected, internal, and protected internal members of a base class. Even though a derived class inherits the private members of a base…
Request and Response Cycle in ASP.Net AJAX The difference between how a traditional web application model and an Ajax-based web application model works. In traditional web applications, when a form is submitted, a request…
What is an assembly in .NET Framework An assembly is the primary building block of a .NET Framework application. It is a collection of functionality that is built, versioned, and deployed as a single implementation…
MasterType Directive in ASP.NET To access members of a specific master page from a content page, you can create a strongly typed reference to the master page by creating a @MasterType directive. This directive…
COM objects from a .NET Framework Any COM component you have deployed today can be used from managed code, and in common cases the adaptation is totally automatic.Specifically, COM components are accessed from the…
Can you have two files with the same file name in GAC? Can you have two files with the same file name in GAC? Yes, remember that GAC is a very special folder, and while normally you would not be able to place two files with the same…
Assemblies in ASP.Net An assembly is the actual .dll file on your hard drive where
the classes in the .NET Framework are stored. For example, all the classes contained in the ASP.NET Framework are…
Customized Tags Add in web.config ASP.NET provides a configuration system we can use to keep our applications flexible at runtime. In this article we will examine some tips and best practices for using the…