Comparing Strings in ASP.Net C# ASP.Net C# is the ability to compare two strings with one another, to check two strings against each other and find out if they're the same or not.While comparing strings, you…
ASp.Net HttpHandlers Modules are fairly low level and fire against every inbound request to the ASP.NET application. Http Handlers are more focused and operate on a specific request mapping, usually a…
ASP.NET Compiler All ASP.NET code is compiled, which enables strong typing, performance optimizations, and early binding, among other benefits. Once the code has been compiled, the common language…
Where is Lady GAGA from ? Where is Lady GAGA from? Lady Gaga, born in New York City is an American singer and songwriter.
GaGa was raised as a Roman Catholic. Left-handed, Gaga began learning to play…
.NET Framework Class Library The .NET Framework contains thousands of classes that you can use when building an application.The Framework Class Library was designed to make it easier to perform the most…
Static Class Tutorial ASP.Net C# Declare static class members by using the static keyword before the return type of the member.static class:Contains only static members.Cannot be instantiated.Is sealed.Cannot…
Primary Interop Assembly (PIA) in C# / .NET Framework A primary interop assembly contains type definitions (as metadata) of types implemented with COM.
Only a single Primary Interop Assembly can exist, which needs to be signed with…
Application Life Cycle Events in ASP.NET architecture Application Life Cycle EventsWhenever event occurs on the web page, the request is sent to the web browser; in our case, let the web server be IIS.The IIS picks up this request…