Understanding Code Behind
Tags:
ASP.NET
, 2003
, Beginning
Code Behind allows the seperation between the code to render the presentation of the page and the programmatic logic of the page by putting each of these types of code into their own file. The presentation layer (with a .ASPX file extension) links to the programmatic layer (with a .ASPX.VB or .ASPX.CS file extnesion) through the use of a page directive called Inherits. This video thoroughly explains the concept of Code Behind and how it is facilitated in the IDE.