What is the use of Partial keyword
- A Partial class is a class that can be split into two or more classes. This means that a class can be physically separated into other parts of the class within the same namespace
- In this code-behind model, the page is declared as a partial class, which enables both the page and code files to be compiled into a single class at runtime. The page code refers to the code-behind file in the CompilesWith attribute of the <%@ Page %> directive, specifying the class name in the ClassName attribute.