Jump to content

Code-behind

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Sundippankaj (talk | contribs) at 07:21, 4 December 2006 (Created page with '== Code-Behind == In ASP.Net the logic and presentation has been separated. The presentation is the .aspx or .ascx files. The code-behind contains the actual progr...'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

Code-Behind

In ASP.Net the logic and presentation has been separated. The presentation is the .aspx or .ascx files. The code-behind contains the actual programmatic logic.

In the traditional ASP style of development, the coding logic has to be nessecarily embedded into the HTML. This made writting code and maintaining it extremely difficult. All the code is written in a single .asp file.