Fragment Caching Example, Page Fragment Caching in ASP.Net ASP.NET provides a mechanism for caching portions of pages, called page fragment caching. To cache a portion of a page, you must first encapsulate the portion of the page you want…
What is a .Net Assembly? √ Assembly is unit of deployment like EXE or a DLL.
√ An assembly consists of one or more files (dlls, exe’s, html files etc.), and represents a group of resources, type…
Exception in ASP.Net C# The C# language's exception handling features provide a way to deal with any unexpected or exceptional situations that arise while a program is running. Exception handling uses…
Value Types Data in ASP.Net C# Variable that are based on value types directly contain a values. Assigning one value type variable to another copies the contained value. This differs from the assignment of…
Difference between an ADO.NET Dataset and an ADO Recordset ADO.NET Dataset & ADO Recordset Feature:A DataSet can represent an entire relational database in memory, complete with tables, relations, and views.A DataSet is designed to…