SQL Server provides a variety of built-in functions that help perform calculations, modify data, and retrieve information. These functions can be classified into several categories...
SQL Server Notification Services is used for developing and deploying applications that generate and send notifications. Notifications are personalized messages sent to a device that...
The Response.Write() method allows you to write the normal output; whereas, the Response.Output.Write() method allows you to write the formatted output.
In singleton pattern, a class can only have one instance and provides access point to it globally.Eg:[csharp]Public sealed class Singleton{Private static readonly Singleton _instance =...
All these are access modifiers in C#. Public declared variables or methods are accessible anywhere in the application. Static declared variables or methods are globally...
There are three types of Caching: Output Caching: stores the responses from an asp.net page. Fragment Caching: Only caches/stores the portion of page (User Control)...
A constructor is a member function with the same name as its class. The constructor is invoked whenever an object of its associated class is created.It...
Global.asax is basically ASP.NET Application file. It’s a place to write code for Application-level events such as Application start, Application end, Session start and end,...