There are number of important settings that can be stored in the configuration file. Here are some of the most frequently used configurations, stored conveniently inside Web.config file..
Methods in ASP.net C# Programming A method is a code block that contains a series of statements. A program causes the statements to be executed by calling the method and specifying any required method arguments.…
Handling the PreInit Event in Master Page ASP.NET 2.0 introduces a new concept known as Master Pages, in which you create a common base master file that provides a consistent layout for multiple pages in your application.…
Implements Directive in ASP.Net The @Implements directive gets the Asp.Net page to implement a specified .NET framework interface. The only single attribute is Interface, helps to specify the .NET Framework…
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…
Page_Init in ASP.NET architecture The Page Life Cycle EventsPage_Init : The page life cycle starts with the invocation of the Page_Init event. This event is responsible for initializing the controls that you use…
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…
What are the different types of .Net Assembly? There are two types of assembly Private and Public assembly. A private assembly is normally used by a single application, and is stored in the application's directory, or a…
Session ID in ASP.Net Asp.Net use 120 bit identifier to track each session. This is secure enough and can't be reverse engineered. When client communicate with server, only session id is transmitted,…